Class: RailsRateableGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/rails_rateable/rails_rateable_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(path) ⇒ Object



9
10
11
# File 'lib/generators/rails_rateable/rails_rateable_generator.rb', line 9

def self.next_migration_number(path)
  Time.now.utc.strftime("%Y%m%d%H%M%S")
end

.source_rootObject



5
6
7
# File 'lib/generators/rails_rateable/rails_rateable_generator.rb', line 5

def self.source_root
  @_rails_rateable_source_root ||= File.expand_path("../templates", __FILE__)
end

Instance Method Details

#copy_migration_fileObject



13
14
15
# File 'lib/generators/rails_rateable/rails_rateable_generator.rb', line 13

def copy_migration_file
  migration_template 'migration.rb', 'db/migrate/rails_rateable_migration.rb'
end