class PerfectMoneyMerchantGenerator

Public Class Methods

next_migration_number(dirname) click to toggle source
# File lib/generators/perfect_money_merchant/perfect_money_merchant_generator.rb, line 8
def self.next_migration_number(dirname)
        if ActiveRecord::Base.timestamped_migrations
                Time.new.utc.strftime("%Y%m%d%H%M%S")
        else
                "%.3d" % (current_migration_number(dirname) + 1)
        end
end
source_root() click to toggle source
# File lib/generators/perfect_money_merchant/perfect_money_merchant_generator.rb, line 4
def self.source_root
        @source_root ||= File.join(File.dirname(__FILE__), 'templates')
end

Public Instance Methods

create_migration_file() click to toggle source
# File lib/generators/perfect_money_merchant/perfect_money_merchant_generator.rb, line 16
def create_migration_file
        migration_template 'migration.rb', 'db/migrate/create_perfect_money_merchant_accounts_and_account_units_and_payments.rb'
end