Class: Adyen::NotificationGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- Adyen::NotificationGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/adyen/notification_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
-
#create_migration_file ⇒ Object
Create a migration file for the adyen_notifications table.
- #create_model_file ⇒ Object
Class Method Details
.next_migration_number(dirname) ⇒ Object
Implement the required interface for Rails::Generators::Migration. taken from github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb
14 15 16 17 18 19 20 |
# File 'lib/adyen/notification_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 |
.source_root ⇒ Object
8 9 10 |
# File 'lib/adyen/notification_generator.rb', line 8 def self.source_root @source_root ||= File.join(File.dirname(__FILE__), 'templates') end |
Instance Method Details
#create_migration_file ⇒ Object
Create a migration file for the adyen_notifications table
23 24 25 |
# File 'lib/adyen/notification_generator.rb', line 23 def create_migration_file migration_template 'notification_migration.rb', 'db/migrate/create_adyen_notifications.rb' end |
#create_model_file ⇒ Object
27 28 29 |
# File 'lib/adyen/notification_generator.rb', line 27 def create_model_file template 'notification_model.rb', 'app/models/adyen_notification.rb' end |