Class: Tramway::Page::Generators::InstallGenerator

Inherits:
Core::Generators::InstallGenerator
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/tramway/page/generators/install_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(path) ⇒ Object



13
14
15
16
# File 'lib/tramway/page/generators/install_generator.rb', line 13

def self.next_migration_number(path)
  next_migration_number = current_migration_number(path) + 1
  ActiveRecord::Migration.next_migration_number next_migration_number
end

Instance Method Details

#copy_migrationsObject



18
19
20
21
22
23
24
25
26
27
28
# File 'lib/tramway/page/generators/install_generator.rb', line 18

def copy_migrations
  migrations = %i[
    create_tramway_page_pages
    add_view_to_tramway_page_pages
    add_page_type_to_tramway_page_pages
    add_view_state_to_tramway_page_pages
  ]
  migrations.each do |migration|
    migration_template "#{migration}.rb", "db/migrate/#{migration}.rb"
  end
end

#run_other_generatorsObject



11
# File 'lib/tramway/page/generators/install_generator.rb', line 11

def run_other_generators; end