Class: Feeds::Generators::MigrationGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- Feeds::Generators::MigrationGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/feeds/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. taken from github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb
13 14 15 16 17 18 19 20 21 |
# File 'lib/generators/feeds/migration_generator.rb', line 13 def self.next_migration_number(dirname) @n ||= 0 if ActiveRecord::Base. @n += 1 (Time.now + @n.seconds).utc.strftime("%Y%m%d%H%M%S") else "%.3d" % (current_migration_number(dirname) + 1) end end |
.source_root ⇒ Object
23 24 25 |
# File 'lib/generators/feeds/migration_generator.rb', line 23 def self.source_root @source_root = File.join(File.dirname(__FILE__), '../templates') end |
Instance Method Details
#create_migrations_file ⇒ Object
27 28 29 |
# File 'lib/generators/feeds/migration_generator.rb', line 27 def create_migrations_file migration_template "create_activities.rb", "db/migrate/sp_create_activities_table.rb" end |