Class: PlutusGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- PlutusGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/plutus/plutus_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. taken from http://github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb
14 15 16 17 18 19 20 |
# File 'lib/generators/plutus/plutus_generator.rb', line 14 def self.next_migration_number(dirname) 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
8 9 10 |
# File 'lib/generators/plutus/plutus_generator.rb', line 8 def self.source_root @source_root ||= File.join(File.dirname(__FILE__), 'templates') end |
Instance Method Details
- (Object) create_migration_file
22 23 24 |
# File 'lib/generators/plutus/plutus_generator.rb', line 22 def create_migration_file migration_template 'migration.rb', 'db/migrate/create_plutus_tables.rb' end |