Upgraded Rails
[monkeycharger.git] / config / initializers / monkeycharger.rb.example
blob47facf6834818a6b5b528a8db5bc41593a9245aa
1 class AuthorizationError < StandardError; end
2 class CaptureError < StandardError; end
4 # Your credit cards will be encrypted with the combination of the
5 # below secret key and a "remote_salt" variable that's supplied by clients
6 # of this web service.  
7 # Is there a better way or more common idiom for doing this?
8 @@CreditCardSecretKey = "Joe Rules!!"
10 case RAILS_ENV
11 when 'test'
12    ActiveMerchant::Billing::Base.mode = :test
13    $gateway = ActiveMerchant::Billing::AuthorizedNetGateway.new :login => 'LOGIN', :password => 'PASSWORD'
14 when 'development'
15    ActiveMerchant::Billing::Base.mode = :test
16    $gateway = ActiveMerchant::Billing::AuthorizedNetGateway.new :login => 'LOGIN', :password => 'PASSWORD'
17 when 'production'
18    $gateway = ActiveMerchant::Billing::AuthorizedNetGateway.new :login => 'LOGIN', :password => 'PASSWORD'
19 end