Sha256: 1b3b5a3d4bdabf6dddf166d5ee47f230ef6e6843e4c6dde37eede78b45519880
Contents?: true
Size: 955 Bytes
Versions: 9
Compression:
Stored size: 955 Bytes
Contents
require 'rails/generators' require 'rails/generators/migration' class Ipizza::NotificationGenerator < Rails::Generators::Base include Rails::Generators::Migration def self.source_root @source_root ||= File.join(File.dirname(__FILE__), 'templates') end # Implement the required interface for Rails::Generators::Migration. # taken from http://github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb def self.next_migration_number(dirname) if ActiveRecord::Base.timestamped_migrations Time.now.utc.strftime("%Y%m%d%H%M%S") else "%.3d" % (current_migration_number(dirname) + 1) end end # Create a migration file for the adyen_notifications table def create_migration_file migration_template 'notification_migration.rb', 'db/migrate/create_ipizza_notifications.rb' end def create_model_file template 'notification_model.rb', 'app/models/ipizza_notification.rb' end end
Version data entries
9 entries across 9 versions & 1 rubygems