Class: ActsAsFootprintable::MigrationGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- ActsAsFootprintable::MigrationGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/acts_as_footprintable/migration/migration_generator.rb
Class Method Summary collapse
- .next_migration_number(_path) ⇒ Object
- .orm ⇒ Object
- .orm_has_migration? ⇒ Boolean
- .source_root ⇒ Object
Instance Method Summary collapse
Class Method Details
.next_migration_number(_path) ⇒ Object
23 24 25 |
# File 'lib/generators/acts_as_footprintable/migration/migration_generator.rb', line 23 def self.next_migration_number(_path) Time.now.utc.strftime('%Y%m%d%H%M%S') end |
.orm ⇒ Object
11 12 13 |
# File 'lib/generators/acts_as_footprintable/migration/migration_generator.rb', line 11 def self.orm Rails::Generators.[:rails][:orm] end |
.orm_has_migration? ⇒ Boolean
19 20 21 |
# File 'lib/generators/acts_as_footprintable/migration/migration_generator.rb', line 19 def self.orm_has_migration? [:active_record].include? orm end |
.source_root ⇒ Object
15 16 17 |
# File 'lib/generators/acts_as_footprintable/migration/migration_generator.rb', line 15 def self.source_root File.join(File.dirname(__FILE__), 'templates', (orm.to_s unless orm.instance_of?(String))) end |
Instance Method Details
#create_migration_file ⇒ Object
27 28 29 30 31 32 33 |
# File 'lib/generators/acts_as_footprintable/migration/migration_generator.rb', line 27 def create_migration_file return unless self.class.orm_has_migration? migration_template 'migration.rb', 'db/migrate/acts_as_footprintable_migration.rb', migration_version: migration_version end |
#migration_version ⇒ Object
35 36 37 |
# File 'lib/generators/acts_as_footprintable/migration/migration_generator.rb', line 35 def migration_version "[#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}]" if over_rails5? end |
#over_rails5? ⇒ Boolean
39 40 41 |
# File 'lib/generators/acts_as_footprintable/migration/migration_generator.rb', line 39 def over_rails5? Rails::VERSION::MAJOR >= 5 end |