From 29ec023adde3bf174f4f256d1ca34b68c7a1502a Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Tue, 26 Dec 2006 19:39:30 +0000 Subject: Fix scaffold_resource generator so it respects the --pretend argument when creating the routes file. Closes #6852 [fearoffish] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5790 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/CHANGELOG | 2 ++ railties/lib/rails_generator/commands.rb | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'railties') diff --git a/railties/CHANGELOG b/railties/CHANGELOG index d395067a5c..6efcb9f9db 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fix scaffold_resource generator so it respects the --pretend argument when creating the routes file. Closes #6852 [fearoffish] + * Fix Webrick Daemon dispatching bug regarding a bad current working directory. Closes #4899 [Rick Olson] * Make config.plugins affect the load path and the dependencies system. Allows you to control plugin loading order, and keep disabled plugins off the load path. [James Adam] diff --git a/railties/lib/rails_generator/commands.rb b/railties/lib/rails_generator/commands.rb index 8db14302da..783d9aeb3a 100644 --- a/railties/lib/rails_generator/commands.rb +++ b/railties/lib/rails_generator/commands.rb @@ -342,8 +342,10 @@ module Rails sentinel = 'ActionController::Routing::Routes.draw do |map|' logger.route "map.resources #{resource_list}" - gsub_file 'config/routes.rb', /(#{Regexp.escape(sentinel)})/mi do |match| - "#{match}\n map.resources #{resource_list}\n" + unless options[:pretend] + gsub_file 'config/routes.rb', /(#{Regexp.escape(sentinel)})/mi do |match| + "#{match}\n map.resources #{resource_list}\n" + end end end -- cgit v1.2.3