diff options
author | Rick Olson <technoweenie@gmail.com> | 2007-01-23 05:01:05 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2007-01-23 05:01:05 +0000 |
commit | 37fa17f55aceea87e6ae825e45ecb266b67e94d7 (patch) | |
tree | 99025f14b48626451faeb880c5141125d990f4d9 /railties/lib/rails_generator/generators/components/resource/USAGE | |
parent | fee8856ff1bae12395a09b6effc1e5f751ad0e72 (diff) | |
download | rails-37fa17f55aceea87e6ae825e45ecb266b67e94d7.tar.gz rails-37fa17f55aceea87e6ae825e45ecb266b67e94d7.tar.bz2 rails-37fa17f55aceea87e6ae825e45ecb266b67e94d7.zip |
Add/Update usage documentation for script/destroy, resource generator and scaffold_resource generator. Closes #7092, #7271, #7267. [bscofield]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6016 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/rails_generator/generators/components/resource/USAGE')
-rw-r--r-- | railties/lib/rails_generator/generators/components/resource/USAGE | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/railties/lib/rails_generator/generators/components/resource/USAGE b/railties/lib/rails_generator/generators/components/resource/USAGE new file mode 100644 index 0000000000..545cbb9cf7 --- /dev/null +++ b/railties/lib/rails_generator/generators/components/resource/USAGE @@ -0,0 +1,30 @@ +Description: + The resource generator creates an empty model, controller, and functional + suitable for inclusion in a REST-like, 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 + 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 + 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. + + Unlike the scaffold_resource 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 + ./script/generate resource purchase order_id:integer created_at:datetime amount:decimal |