method
    
    current_migration_number
 
  current_migration_number()
  protected
  
    Hide source    
    
      
  
# File railties/lib/rails_generator/commands.rb, line 71 def current_migration_number Dir.glob("#{@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

 RSpec
RSpec Ruby on Rails
Ruby on Rails Ruby
Ruby 
   
   
    
    
 
    
    