Class: EventSourcedAccountingGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/event_sourced_accounting/event_sourced_accounting_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object

Implement the required interface for Rails::Generators::Migration. taken from github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb



14
15
16
17
18
19
20
# File 'lib/generators/event_sourced_accounting/event_sourced_accounting_generator.rb', line 14

def self.next_migration_number(dirname)
 if ActiveRecord::Base.timestamped_migrations
	 Time.now.utc.strftime("%Y%m%d%H%M%S")
 else
	 "%.3d" % (current_migration_number(dirname) + 1)
 end
end

.source_rootObject



8
9
10
# File 'lib/generators/event_sourced_accounting/event_sourced_accounting_generator.rb', line 8

def self.source_root
	@source_root ||= File.join(File.dirname(__FILE__), 'templates')
end

Instance Method Details

#create_migration_fileObject



22
23
24
# File 'lib/generators/event_sourced_accounting/event_sourced_accounting_generator.rb', line 22

def create_migration_file
 migration_template 'migration.rb', 'db/migrate/create_esa_tables.rb'
end