aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/scaffold/USAGE
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-05-16 01:23:34 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-05-16 01:23:34 +0000
commit4f2a950ce2f29d4c6ce777d5a949440b6c2a440f (patch)
treef8138e47643edf98835ee3d85366b58b36795c97 /railties/lib/rails_generator/generators/components/scaffold/USAGE
parent73fbf7771bbfc6c3c8c4ddd8f4f84eb6bfac504d (diff)
downloadrails-4f2a950ce2f29d4c6ce777d5a949440b6c2a440f.tar.gz
rails-4f2a950ce2f29d4c6ce777d5a949440b6c2a440f.tar.bz2
rails-4f2a950ce2f29d4c6ce777d5a949440b6c2a440f.zip
Make way for the new and improved scaffold
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6745 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/rails_generator/generators/components/scaffold/USAGE')
-rw-r--r--railties/lib/rails_generator/generators/components/scaffold/USAGE32
1 files changed, 0 insertions, 32 deletions
diff --git a/railties/lib/rails_generator/generators/components/scaffold/USAGE b/railties/lib/rails_generator/generators/components/scaffold/USAGE
deleted file mode 100644
index 1b6eaa2dd9..0000000000
--- a/railties/lib/rails_generator/generators/components/scaffold/USAGE
+++ /dev/null
@@ -1,32 +0,0 @@
-Description:
- The scaffold generator creates a controller to interact with a model.
- If the model does not exist, it creates the model as well. The generated
- code is equivalent to the "scaffold :model" declaration, making it easy
- to migrate when you wish to customize your controller and views.
-
- The generator takes a model name, an optional controller name, and a
- list of views as arguments. Scaffolded actions and views are created
- automatically. Any views left over generate empty stubs.
-
- The scaffolded actions and views are:
- index, list, show, new, create, edit, update, destroy
-
- If a controller name is not given, the plural form of the model name
- will be used. The model and controller names may be given in CamelCase
- or under_score and should not be suffixed with 'Model' or 'Controller'.
- Both model and controller names may be prefixed with a module like a
- file path; see the Modules Example for usage.
-
-Example:
- ./script/generate scaffold Account Bank debit credit
-
- This will generate an Account model and BankController with a full test
- suite and a basic user interface. Now create the accounts table in your
- database and browse to http://localhost/bank/ -- voila, you're on Rails!
-
-Modules Example:
- ./script/generate scaffold CreditCard 'admin/credit_card' suspend late_fee
-
- This will generate a CreditCard model and CreditCardController controller
- in the admin module.
-