method

current_migration_number

rails latest stable - Class: Rails::Generator::Commands::Base

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

current_migration_number()
protected

No documentation available.

# File railties/lib/rails_generator/commands.rb, line 61
          def current_migration_number
            Dir.glob("#{RAILS_ROOT}/#{@migration_directory}/[0-9]*_*.rb").inject(0) do |max, file_path|
              n = File.basename(file_path).split('_', 2).first.to_i
              if n > max then n else max end
            end
          end