From 3ba23348de4c7765b67e3715d2ab84c998bb1cea Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Mon, 29 Oct 2007 21:40:23 +0000 Subject: Excise generated whitespace. Closes #10017 [Tim Pope] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8055 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- .../generators/components/resource/templates/USAGE | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 railties/lib/rails_generator/generators/components/resource/templates/USAGE (limited to 'railties/lib/rails_generator/generators/components/resource/templates/USAGE') diff --git a/railties/lib/rails_generator/generators/components/resource/templates/USAGE b/railties/lib/rails_generator/generators/components/resource/templates/USAGE deleted file mode 100644 index 1c03d44bdb..0000000000 --- a/railties/lib/rails_generator/generators/components/resource/templates/USAGE +++ /dev/null @@ -1,18 +0,0 @@ -Description: - The resource generator creates an empty model and controller for use in a REST-friendly, resource-oriented - application. Say you want to a resource called post. Normally, you could just call "script/generate model post" and - "script/generate controller posts". This generator basically just collapses these two generators into one step. - - 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 and give you a set of predefined fixture. - 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. - -Examples: - ./script/generate resource post - ./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 -- cgit v1.2.3