Class: ActiveRecord::Generators::BushidoGenerator
Instance Method Summary
collapse
#model_contents, #model_exists?, #model_path
Instance Method Details
#copy_bushido_migration ⇒ Object
16
17
18
|
# File 'lib/generators/active_record/bushido_generator.rb', line 16
def copy_bushido_migration
migration_template "migration.rb", "db/migrate/bushido_create_#{table_name}"
end
|
#generate_model ⇒ Object
12
13
14
|
# File 'lib/generators/active_record/bushido_generator.rb', line 12
def generate_model
invoke "active_record:model", [name], :migration => false unless model_exists?
end
|
#inject_bushido_content ⇒ Object
20
21
22
23
24
25
|
# File 'lib/generators/active_record/bushido_generator.rb', line 20
def inject_bushido_content
inject_into_class model_path, class_name, model_contents + <<-CONTENT
# Setup accessible (or protected) attributes for your model
attr_accessible :bushido_id, :bushido_version
CONTENT
end
|