Skip to content

Instantly share code, notes, and snippets.

@murraycs
Created October 11, 2011 19:32
Show Gist options
  • Save murraycs/1279150 to your computer and use it in GitHub Desktop.
Save murraycs/1279150 to your computer and use it in GitHub Desktop.
Simplepay.rb
Simplepay.aws_access_key_id = 'ACCESS_KEY_ID'
Simplepay.aws_secret_access_key = 'SECRET_ACCESS_KEY'
if RAILS_ENV.eql?('development')
Simplepay.account_id = 'ACCOUNT_ID'
Simplepay.use_sandbox = true
else
Simplepay.account_id = 'ACCOUNT_ID'
Simplepay.use_sandbox = false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment