Class: Nayati::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- Nayati::Generators::InstallGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/nayati/install/install_generator.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.next_migration_number(path) ⇒ Object
10 11 12 13 14 15 16 17 |
# File 'lib/generators/nayati/install/install_generator.rb', line 10 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 |
Instance Method Details
#copy_migrations ⇒ Object
19 20 21 22 23 |
# File 'lib/generators/nayati/install/install_generator.rb', line 19 def copy_migrations migration_template "create_workflow.rb", "db/migrate/create_workflow.rb" migration_template "create_operation.rb", "db/migrate/create_operation.rb" # migration_template "create_something_else.rb", "db/migrate/create_something_else.rb" end |
#copy_operations_yml ⇒ Object
25 26 27 |
# File 'lib/generators/nayati/install/install_generator.rb', line 25 def copy_operations_yml copy_file "operations.yml", "config/operations.yml" end |