Class: AsyncJobMigrationGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- AsyncJobMigrationGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/async_job_migration/async_job_migration_generator.rb
Class Method Summary collapse
-
.next_migration_number(dirname) ⇒ Object
Implement the required interface for Rails::Generators::Migration.
- .source_root ⇒ Object
Instance Method Summary collapse
Class Method Details
.next_migration_number(dirname) ⇒ Object
Implement the required interface for Rails::Generators::Migration.
13 14 15 16 17 18 19 20 |
# File 'lib/generators/async_job_migration/async_job_migration_generator.rb', line 13 def self.next_migration_number(dirname) #:nodoc: next_migration_number = current_migration_number(dirname) + 1 if ActiveRecord::Base. [Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % next_migration_number].max else "%.3d" % next_migration_number end end |
.source_root ⇒ Object
7 8 9 |
# File 'lib/generators/async_job_migration/async_job_migration_generator.rb', line 7 def self.source_root @source_root ||= File.join(File.dirname(__FILE__), 'templates') end |
Instance Method Details
#create_migration_file ⇒ Object
22 23 24 25 26 |
# File 'lib/generators/async_job_migration/async_job_migration_generator.rb', line 22 def create_migration_file if defined?(ActiveRecord) migration_template 'migration.rb', 'db/migrate/create_async_job_results.rb' end end |