Sha256: 8f5435266f59cd9a8121f2c7985939050243e57230c02254346f6ee8e491bc8e
Contents?: true
Size: 1.63 KB
Versions: 7
Compression:
Stored size: 1.63 KB
Contents
require 'logger' module Killbill::PaypalExpress mattr_reader :logger mattr_reader :config mattr_reader :gateway mattr_reader :paypal_sandbox_url mattr_reader :paypal_production_url mattr_reader :paypal_payment_description mattr_reader :currency_conversions mattr_reader :initialized mattr_reader :test def self.initialize!(logger=Logger.new(STDOUT), conf_dir=File.expand_path('../../../', File.dirname(__FILE__))) @@logger = logger config_file = "#{conf_dir}/paypal_express.yml" @@config = Properties.new(config_file) @@config.parse! @@logger.log_level = Logger::DEBUG if (@@config[:logger] || {})[:debug] @@paypal_sandbox_url = @@config[:paypal][:sandbox_url] || 'https://www.sandbox.paypal.com/cgi-bin/webscr' @@paypal_production_url = @@config[:paypal][:production_url] || 'https://www.paypal.com/cgi-bin/webscr' @@test = @@config[:paypal][:test] @@paypal_payment_description = @@config[:paypal][:payment_description] @@gateway = Killbill::PaypalExpress::Gateway.instance @@gateway.configure(@@config[:paypal]) @@currency_conversions = @@config[:currency_conversions] if defined?(JRUBY_VERSION) # See https://github.com/jruby/activerecord-jdbc-adapter/issues/302 require 'jdbc/mysql' Jdbc::MySQL.load_driver(:require) if Jdbc::MySQL.respond_to?(:load_driver) end ActiveRecord::Base.establish_connection(@@config[:database]) ActiveRecord::Base.logger = @@logger @@initialized = true end def self.converted_currency(currency) currency_sym = currency.to_s.upcase.to_sym @@currency_conversions && @@currency_conversions[currency_sym] end end
Version data entries
7 entries across 7 versions & 1 rubygems