Class: GfreshPoint::Generators::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/gfresh_point/install/install_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(path) ⇒ Object



11
12
13
14
# File 'lib/generators/gfresh_point/install/install_generator.rb', line 11

def self.next_migration_number(path)
  next_migration_number = current_migration_number(path) + 1
  ActiveRecord::Migration.next_migration_number(next_migration_number)
end

Instance Method Details

#copy_migrationsObject



16
17
18
19
# File 'lib/generators/gfresh_point/install/install_generator.rb', line 16

def copy_migrations
  migration_template "create_gfresh_point_rule.rb",
    "db/migrate/create_gfresh_point_rule.rb"
end