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
上级 6580b3ab
*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]
......
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 @@ def manifest
# 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 @@ def add_options!(opt)
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
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册