lib/tramway/profiles/generates/install_generator.rb in tramway-profiles-1.3.1 vs lib/tramway/profiles/generates/install_generator.rb in tramway-profiles-1.3.2

- old
+ new

@@ -1,14 +1,15 @@ +# frozen_string_literal: true + require 'rails/generators' require 'tramway/core/generators/install_generator' module Tramway::Profiles::Generators class InstallGenerator < ::Tramway::Core::Generators::InstallGenerator include Rails::Generators::Migration - source_root File.expand_path('../templates', __FILE__) + source_root File.expand_path('templates', __dir__) - def run_other_generators - end + def run_other_generators; end def self.next_migration_number(path) next_migration_number = current_migration_number(path) + 1 ActiveRecord::Migration.next_migration_number next_migration_number end