diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-07 13:14:05 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-07 13:14:05 +0000 |
commit | daee6fd92ac16878f6806c3382a9e74592aa9656 (patch) | |
tree | d477c6502960cb141403f8b4640dd483b487e5df /railties/lib/rails_generator/generators/components/model/USAGE | |
parent | 838c5a3d82367977d13ced01f9e28c22ccff32ef (diff) | |
download | rails-daee6fd92ac16878f6806c3382a9e74592aa9656.tar.gz rails-daee6fd92ac16878f6806c3382a9e74592aa9656.tar.bz2 rails-daee6fd92ac16878f6806c3382a9e74592aa9656.zip |
Added new generator framework that informs about its doings on generation and enables updating and destruction of generated artifacts. See the new script/destroy and script/update for more details #487 [bitsweat]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@518 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib/rails_generator/generators/components/model/USAGE')
-rw-r--r-- | railties/lib/rails_generator/generators/components/model/USAGE | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/railties/lib/rails_generator/generators/components/model/USAGE b/railties/lib/rails_generator/generators/components/model/USAGE new file mode 100644 index 0000000000..f0669104fe --- /dev/null +++ b/railties/lib/rails_generator/generators/components/model/USAGE @@ -0,0 +1,17 @@ +Description: + The model generator creates stubs for a new model. + + The generator takes a model name as its argument. The model name may be + given in CamelCase or under_score and should not be suffixed with 'Model'. + + The generator creates a model class in app/models, a test suite in + test/unit, and test fixtures in test/fixtures/model_name.yml. + +Example: + ./script/generate model Account + + This will create an Account model: + Model: app/models/account.rb + Test: test/unit/account_test.rb + Fixtures: test/fixtures/accounts.yml + |