Sha256: c3f203ba738676837fc00b98002056299d362a09a587ae5b9c86e66e27d13c6d
Contents?: true
Size: 924 Bytes
Versions: 10
Compression:
Stored size: 924 Bytes
Contents
module IdealMollie # # Simpel extend on the +Rails::Engine+ to add support for a new config section within # the environment configs # # @example default # # /config/environments/development.rb # config.ideal_mollie.partner_id = 123456 # config.ideal_mollie.report_url = "http://example.org/report" # config.ideal_mollie.return_url = "http://example.org/return" # config.ideal_mollie.test_mode = false # # @example optional profile_key when having to deal with multiple profile's # # /config/environments/development.rb # config.ideal_mollie.partner_id = 123456 # config.ideal_mollie.report_url = "http://example.org/report" # config.ideal_mollie.return_url = "http://example.org/return" # config.ideal_mollie.test_mode = false # config.ideal_mollie.profile_key = "123abc45" # class Engine < Rails::Engine config.ideal_mollie = IdealMollie::Config end end
Version data entries
10 entries across 10 versions & 1 rubygems