Added --skip-fixture option to script/generate model (closes #6862) [sandofsky]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7601 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2007-09-23 22:08:02 +00:00
parent 6580b3ab00
commit 906c49d0f3
2 changed files with 9 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Added --skip-fixture option to script/generate model #6862 [sandofsky]
* Print Rails version when starting console #7440 [eyematz]
* Fixed the placement of fixture files for nested models when generating through script/generate model #7547 [jkit]

View File

@@ -1,5 +1,5 @@
class ModelGenerator < Rails::Generator::NamedBase
default_options :skip_migration => false
default_options :skip_migration => false, :skip_fixture => false
def manifest
record do |m|
@@ -14,7 +14,10 @@ class ModelGenerator < Rails::Generator::NamedBase
# Model class, unit test, and fixtures.
m.template 'model.rb', File.join('app/models', class_path, "#{file_name}.rb")
m.template 'unit_test.rb', File.join('test/unit', class_path, "#{file_name}_test.rb")
m.template 'fixtures.yml', File.join('test/fixtures', "#{table_name}.yml")
unless options[:skip_fixture]
m.template 'fixtures.yml', File.join('test/fixtures', "#{table_name}.yml")
end
unless options[:skip_migration]
m.migration_template 'migration.rb', 'db/migrate', :assigns => {
@@ -34,5 +37,7 @@ class ModelGenerator < Rails::Generator::NamedBase
opt.separator 'Options:'
opt.on("--skip-migration",
"Don't generate a migration file for this model") { |v| options[:skip_migration] = v }
opt.on("--skip-fixture",
"Don't generation a fixture file for this model") { |v| options[:skip_fixture] = v}
end
end