Class: HonestyGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- HonestyGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/honesty/honesty_generator.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.next_migration_number(path) ⇒ Object
10 11 12 |
# File 'lib/generators/honesty/honesty_generator.rb', line 10 def self.next_migration_number(path) Time.now.utc.strftime("%Y%m%d%H%M%S") end |
.source_root ⇒ Object
6 7 8 |
# File 'lib/generators/honesty/honesty_generator.rb', line 6 def self.source_root @source_root ||= File.("../templates", __FILE__) end |
Instance Method Details
#create_model_file ⇒ Object
14 15 16 17 |
# File 'lib/generators/honesty/honesty_generator.rb', line 14 def create_model_file template "fact.rb", "app/models/fact.rb" migration_template "create_facts.rb", "db/migrate/create_facts.rb" end |