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)
-
+ (Object) next_migration_number(dirname)
Implement the required interface for Rails::Generators::Migration.
- + (Object) source_root
Instance Method Summary (collapse)
-
- (Object) create_migration_file
Create a migration file for the adyen_notifications table.
- - (Object) create_model_file
Class Method Details
+ (Object) next_migration_number(dirname)
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 |
+ (Object) source_root
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
- (Object) create_migration_file
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 |
- (Object) create_model_file
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 |