aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/scripts/destroy.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-05-18 14:37:44 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-05-18 14:37:44 +0000
commit249d55e684ba7808807fe270cef75955e5bc4e69 (patch)
tree7c93d431cd6bbca0a46c8d81f92c57d45bcfce96 /railties/lib/rails_generator/scripts/destroy.rb
parent18326e3526e9dc55e133425aec38752e171a55bb (diff)
downloadrails-249d55e684ba7808807fe270cef75955e5bc4e69.tar.gz
rails-249d55e684ba7808807fe270cef75955e5bc4e69.tar.bz2
rails-249d55e684ba7808807fe270cef75955e5bc4e69.zip
We changed name to scaffold
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6768 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/rails_generator/scripts/destroy.rb')
-rw-r--r--railties/lib/rails_generator/scripts/destroy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails_generator/scripts/destroy.rb b/railties/lib/rails_generator/scripts/destroy.rb
index 4c5f483c5b..4fcbc3e0df 100644
--- a/railties/lib/rails_generator/scripts/destroy.rb
+++ b/railties/lib/rails_generator/scripts/destroy.rb
@@ -18,7 +18,7 @@ module Rails::Generator::Scripts
This script will destroy all files created by the corresponding
script/generate command. For instance, script/destroy migration CreatePost
will delete the appropriate ###_create_post.rb file in db/migrate, while
-script/destroy scaffold_resource Post will delete the posts controller and
+script/destroy scaffold Post will delete the posts controller and
views, post model and migration, all associated tests, and the map.resources
:posts line in config/routes.rb.