class Tramway::User::Generators::InstallGenerator
Public Class Methods
next_migration_number(path)
click to toggle source
# File lib/tramway/user/generators/install_generator.rb, line 17 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/user/generators/install_generator.rb, line 22 def copy_migrations migrations = %i[ create_tramway_user_users add_phone_to_tramway_user_users ] migrations.each do |migration| migration_template "#{migration}.rb", "db/migrate/#{migration}.rb" end end
run_another_generators()
click to toggle source
# File lib/tramway/user/generators/install_generator.rb, line 13 def run_another_generators generate 'tramway:core:install' end