recipes/cleanup.rb in rails_apps_composer-1.0.0 vs recipes/cleanup.rb in rails_apps_composer-1.0.3

- old
+ new

@@ -1,7 +1,7 @@ # Application template recipe for the rails_apps_composer. Check for a newer version here: -# https://github.com/fortuity/rails_apps_composer/blob/master/recipes/cleanup.rb +# https://github.com/RailsApps/rails_apps_composer/blob/master/recipes/cleanup.rb after_bundler do say_wizard "Cleanup recipe running 'after bundler'" @@ -12,12 +12,12 @@ public/index.html public/images/rails.png }.each { |file| remove_file file } # add placeholder READMEs - get "https://github.com/fortuity/rails-template-recipes/raw/master/sample_readme.txt", "README" - get "https://github.com/fortuity/rails-template-recipes/raw/master/sample_readme.textile", "README.textile" + get "https://github.com/RailsApps/rails3-application-templates/raw/master/files/sample_readme.txt", "README" + get "https://github.com/RailsApps/rails3-application-templates/raw/master/files/sample_readme.textile", "README.textile" gsub_file "README", /App_Name/, "#{app_name.humanize.titleize}" gsub_file "README.textile", /App_Name/, "#{app_name.humanize.titleize}" # remove commented lines from Gemfile # thanks to https://github.com/perfectline/template-bucket/blob/master/cleanup.rb @@ -28,9 +28,9 @@ __END__ name: Cleanup description: "Remove unnecessary files left over from generating a new Rails app." -author: fortuity +author: RailsApps category: other tags: [utilities, configuration]