Class: Stonepath::Generators::EventLogGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- Stonepath::Generators::EventLogGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/stonepath/event_log/event_log_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 http://github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb
24 25 26 27 28 29 30 |
# File 'lib/generators/stonepath/event_log/event_log_generator.rb', line 24 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 |
.source_root ⇒ Object
8 9 10 |
# File 'lib/generators/stonepath/event_log/event_log_generator.rb', line 8 def self.source_root @source_root ||= File.join(File.dirname(__FILE__), 'templates') end |
Instance Method Details
#create_migration ⇒ Object
16 17 18 |
# File 'lib/generators/stonepath/event_log/event_log_generator.rb', line 16 def create_migration migration_template 'create_event_records.rb', "db/migrate/create_event_records.rb" end |
#create_model_file ⇒ Object
12 13 14 |
# File 'lib/generators/stonepath/event_log/event_log_generator.rb', line 12 def create_model_file template('event_record.rb', "app/models/event_record.rb") end |