From 744b8fbcf387bb1271222c750bb746942eeed487 Mon Sep 17 00:00:00 2001 From: Watson Date: Fri, 26 Oct 2012 00:23:33 +0900 Subject: [PATCH] add some temporary files and project files into .gitignore (Thanks, @esummers) --- lib/motion/project/app.rb | 7 +++++++ 1 file changed, 7 insertions(+) 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|