Class: ActsAsVotable::MigrationGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- ActsAsVotable::MigrationGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/acts_as_votable/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_votable/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_votable/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_votable/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_votable/migration/migration_generator.rb', line 15 def self.source_root File.join(File.dirname(__FILE__), "templates", (orm.to_s unless orm.class.eql?(String))) end |
Instance Method Details
#create_migration_file ⇒ Object
27 28 29 30 31 |
# File 'lib/generators/acts_as_votable/migration/migration_generator.rb', line 27 def create_migration_file if self.class.orm_has_migration? migration_template "migration.erb", "db/migrate/acts_as_votable_migration.rb", migration_version: migration_version end end |