diff --git a/lib/motion/project/app.rb b/lib/motion/project/app.rb index a1121412..50a7e755 100644 --- a/lib/motion/project/app.rb +++ b/lib/motion/project/app.rb @@ -96,10 +96,17 @@ module Motion; module Project File.open('.gitignore', 'w') do |io| io.puts ".repl_history" io.puts "build" + io.puts "tags" io.puts "resources/*.nib" io.puts "resources/*.momd" io.puts "resources/*.storyboardc" io.puts ".DS_Store" + io.puts "nbproject" + io.puts ".redcar" + io.puts "#*#" + io.puts "*~" + io.puts "*.sw[po]" + io.puts ".eprj" end App.log 'Create', File.join(app_name, 'Rakefile') File.open('Rakefile', 'w') do |io|