aboutsummaryrefslogtreecommitdiffstats
path: root/railties/generators/model/USAGE
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-12-09 15:54:22 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-12-09 15:54:22 +0000
commit3236e15cb7a00f00e119ff8dd9cde36cb6d3d180 (patch)
tree010f37ba1566cd53cda05aec60e8da1ae35026a0 /railties/generators/model/USAGE
parentc7589559dea75a735ccb74364b06d57f26f1db3d (diff)
downloadrails-3236e15cb7a00f00e119ff8dd9cde36cb6d3d180.tar.gz
rails-3236e15cb7a00f00e119ff8dd9cde36cb6d3d180.tar.bz2
rails-3236e15cb7a00f00e119ff8dd9cde36cb6d3d180.zip
Updated the usage documentation for the generator actions for their new home
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@101 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/generators/model/USAGE')
-rw-r--r--railties/generators/model/USAGE18
1 files changed, 9 insertions, 9 deletions
diff --git a/railties/generators/model/USAGE b/railties/generators/model/USAGE
index debf185bea..50ab3a8f09 100644
--- a/railties/generators/model/USAGE
+++ b/railties/generators/model/USAGE
@@ -1,17 +1,17 @@
-NAME
- new_model - create model stub files
+GENERATOR
+ model - create model stub files
SYNOPSIS
- new_model ModelName
+ generate model ModelName
DESCRIPTION
- The new_model generator takes a model name (in CamelCase) and generates
- a new, empty model in app/models, a test suite in test/unit with one
- failing test case, and a fixtures directory in test/fixtures.
+ The model generator takes a model name and generates an empty model in
+ app/models, a test suite in test/unit with one passing test case, and a
+ fixtures YAML file in the test/fixtures directory.
EXAMPLE
- new_model Account
+ ./script/generate model Account
This will generate an Account class in app/models/account.rb, an
- AccountTest in test/unit/account_test.rb, and the directory
- test/fixtures/account.
+ AccountTest in test/unit/account_test.rb, and the fixtures file
+ test/fixtures/account.yml.