Class: Realogy::Generators::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/realogy/install/install_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(path) ⇒ Object



10
11
12
# File 'lib/generators/realogy/install/install_generator.rb', line 10

def self.next_migration_number(path)
  Time.now.utc.strftime("%Y%m%d%H%M%S")
end

Instance Method Details

#create_model_fileObject



14
15
16
17
18
# File 'lib/generators/realogy/install/install_generator.rb', line 14

def create_model_file
  %w[realogy_entities].each do |name|
    migration_template "create_#{name}.rb", "db/migrate/create_#{name}.rb"
  end
end