Class: ActiveRecord::Generators::BushidoGenerator

Inherits:
Base
  • Object
show all
Includes:
Bushido::Generators::OrmHelpers
Defined in:
lib/generators/active_record/bushido_generator.rb

Instance Method Summary collapse

Methods included from Bushido::Generators::OrmHelpers

#model_contents, #model_exists?, #model_path

Instance Method Details

#copy_bushido_migrationObject



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_modelObject



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_contentObject



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