From 249d55e684ba7808807fe270cef75955e5bc4e69 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 18 May 2007 14:37:44 +0000 Subject: We changed name to scaffold git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6768 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/lib/rails_generator/generators/components/resource/USAGE | 2 +- railties/lib/rails_generator/generators/components/scaffold/USAGE | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'railties/lib/rails_generator/generators/components') diff --git a/railties/lib/rails_generator/generators/components/resource/USAGE b/railties/lib/rails_generator/generators/components/resource/USAGE index 545cbb9cf7..637ddd83e3 100644 --- a/railties/lib/rails_generator/generators/components/resource/USAGE +++ b/railties/lib/rails_generator/generators/components/resource/USAGE @@ -21,7 +21,7 @@ Description: your config/routes.rb file, hooking up the rules that'll point URLs to this new resource. - Unlike the scaffold_resource generator, the resource generator does not + Unlike the scaffold generator, the resource generator does not create views or add any methods to the generated controller. Examples: diff --git a/railties/lib/rails_generator/generators/components/scaffold/USAGE b/railties/lib/rails_generator/generators/components/scaffold/USAGE index 82fd6e2fb4..a194f8d415 100644 --- a/railties/lib/rails_generator/generators/components/scaffold/USAGE +++ b/railties/lib/rails_generator/generators/components/scaffold/USAGE @@ -9,14 +9,14 @@ Description: The generator takes the name of the model as its first argument. This model name is then pluralized to get the controller name. So - "scaffold_resource post" will generate a Post model and a + "scaffold post" will generate a Post model and a PostsController and will be intended for URLs like /posts and /posts/45. As additional parameters, the generator will take attribute pairs described by name and type. These attributes will be used to prepopulate the migration to create the table for the model and to give - you a set of templates for the view. For example, "scaffold_resource + you a set of templates for the view. For example, "scaffold post title:string created_on:date body:text published:boolean" will give you a model with those four attributes, forms to create and edit those models from, and an index that'll list them all. @@ -27,7 +27,7 @@ Description: The generator also adds a declaration to your config/routes.rb file to hook up the rules that'll point URLs to this new resource. If you - create a resource like "scaffold_resource post", it will add + create a resource like "scaffold post", it will add "map.resources :posts" (notice the plural form) in the routes file, making your new resource accessible from /posts. -- cgit v1.2.3