Class: Burstflow::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- Burstflow::Generators::InstallGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/burstflow/install/install_generator.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.next_migration_number(path) ⇒ Object
14 15 16 17 |
# File 'lib/generators/burstflow/install/install_generator.rb', line 14 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_migrations ⇒ Object
19 20 21 22 |
# File 'lib/generators/burstflow/install/install_generator.rb', line 19 def copy_migrations migration_template 'create_workflow.rb', 'db/migrate/create_workflow.rb' end |