Class: ColetivoGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- ColetivoGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/coletivo/coletivo_generator.rb
Class Method Summary (collapse)
-
+ (Object) next_migration_number(dirname)
Implement the required interface for Rails::Generators::Migration.
- + (Object) source_root
Instance Method Summary (collapse)
Class Method Details
+ (Object) next_migration_number(dirname)
Implement the required interface for Rails::Generators::Migration.
12 13 14 15 16 17 18 |
# File 'lib/generators/coletivo/coletivo_generator.rb', line 12 def self.next_migration_number(dirname) #:nodoc: if ActiveRecord::Base. Time.now.utc.strftime("%Y%m%d%H%M%S") else "%.3d" % (current_migration_number(dirname) + 1) end end |
+ (Object) source_root
7 8 9 |
# File 'lib/generators/coletivo/coletivo_generator.rb', line 7 def self.source_root File.join(File.dirname(__FILE__), 'templates') end |
Instance Method Details
- (Object) create_migration_file
20 21 22 23 |
# File 'lib/generators/coletivo/coletivo_generator.rb', line 20 def create_migration_file migration_template 'person_ratings_migration.rb', 'db/migrate/create_person_ratings.rb' end |