aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-05-20 23:25:18 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-05-20 23:25:18 +0000
commit7232cb705ac21795374eeb05fab5fa2437efaabb (patch)
treedb932561da25d4a2c3085b7a3955d7cb3ee49b91 /railties/lib/rails_generator
parentae2db50873a760162053ed43a01c8d84872bd7c8 (diff)
downloadrails-7232cb705ac21795374eeb05fab5fa2437efaabb.tar.gz
rails-7232cb705ac21795374eeb05fab5fa2437efaabb.tar.bz2
rails-7232cb705ac21795374eeb05fab5fa2437efaabb.zip
Fix USAGE typo in resource generator. Closes #8406.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6795 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/rails_generator')
-rw-r--r--railties/lib/rails_generator/generators/components/resource/USAGE26
1 files changed, 13 insertions, 13 deletions
diff --git a/railties/lib/rails_generator/generators/components/resource/USAGE b/railties/lib/rails_generator/generators/components/resource/USAGE
index 637ddd83e3..37faf2aba9 100644
--- a/railties/lib/rails_generator/generators/components/resource/USAGE
+++ b/railties/lib/rails_generator/generators/components/resource/USAGE
@@ -1,29 +1,29 @@
Description:
The resource generator creates an empty model, controller, and functional
- suitable for inclusion in a REST-like, resource-oriented application.
-
+ test suitable for a RESTful, resource-oriented application.
+
The generator takes the name of the model as its first argument. This
model name is then pluralized to get the controller name. So "resource
- post" will generate a Post model and a PostsController and will be
+ 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. For
- example, "resource post title:string created_on:date body:text
+ prepopulate the migration to create the table for the model. For
+ example, "resource post title:string created_on:date body:text
published:boolean" will give you a Post model with those four attributes.
-
+
You don't have to think up all attributes up front, but it's a good
idea of adding just the baseline of what's needed to start really
working with the resource.
-
- The generator also adds an appropriate map.resources declaration to
- your config/routes.rb file, hooking up the rules that'll point URLs to
- this new resource.
-
+
+ The generator also adds an appropriate map.resources declaration to
+ your config/routes.rb file, hooking up the rules that'll point URLs to
+ this new resource.
+
Unlike the scaffold generator, the resource generator does not
create views or add any methods to the generated controller.
-
+
Examples:
./script/generate resource post # no attributes
./script/generate resource post title:string created_on:date body:text published:boolean