class Tramway::Mailout::Generators::InstallGenerator
Public Class Methods
next_migration_number(path)
click to toggle source
# File lib/tramway/mailout/generates/install_generator.rb, line 15 def self.next_migration_number(path) next_migration_number = current_migration_number(path) + 1 ActiveRecord::Migration.next_migration_number next_migration_number end
Public Instance Methods
copy_migrations()
click to toggle source
# File lib/tramway/mailout/generates/install_generator.rb, line 20 def copy_migrations migration_template 'create_tramway_mailout_sessions.rb', 'db/migrate/create_tramway_mailout_sessions.rb' end
run_other_generators()
click to toggle source
# File lib/tramway/mailout/generates/install_generator.rb, line 11 def run_other_generators generate 'tramway:core:install' end