class MerryGoRound::Generators::InstallGenerator

Public Class Methods

next_migration_number(path) click to toggle source
# File lib/rails/generators/merry_go_round/install/install_generator.rb, line 9
def self.next_migration_number(path)
  unless @prev_migration_nr
    @prev_migration_nr = Time.now.utc.strftime("%Y%m%d%H%M%S").to_i
  else
    @prev_migration_nr += 1
  end
  @prev_migration_nr.to_s
end

Public Instance Methods

copy_migrations() click to toggle source
# File lib/rails/generators/merry_go_round/install/install_generator.rb, line 18
def copy_migrations
  migration_template 'add_aggregations.rb', 'db/migrate/add_merry_go_round_aggregations.rb'
  copy_file 'merry_go_round.rake', 'lib/tasks/merry_go_round.rake'
end