active_merchant-epsilon
active_merchant-epsilon copied to clipboard
Epsilon integration for ActiveMerchant.
I want to add RBS type definitions for the user interface. They don't need to be perfect.
The README's build badge shows Travis CI. Update it to GitHub Actions or remove it.
Active Merchantにはプロキシ設定がありますが、ユーザーとパスワードを渡すことができません。そのため、Active Merchantはユーザー名・パスワードによる認証が必要なプロキシを利用できませんでした。 そこで以下のPull Requestにて、`ActiveMerchant::Connection`の`attr_accessor `として`:proxy_user`/`:proxy_password`を渡せるようにしました。 https://github.com/activemerchant/active_merchant/pull/5102 この`:proxy_user`/`:proxy_password`をactive_merchant-epsilonから利用できるようにします。以下のように設定できるようになります。 ```ruby ActiveMerchant::Billing::EpsilonGateway.proxy_address = 'example.com' ActiveMerchant::Billing::EpsilonGateway.proxy_port = 8080 ActiveMerchant::Billing::EpsilonGateway.proxy_user = 'user' ActiveMerchant::Billing::EpsilonGateway.proxy_password = 'password' ``` https://github.com/activemerchant/active_merchant/pull/5102 はマージはされましたがまだリリースされておらず、このPull Requestのマージタイミングについては相談したいです。 --- Active Merchant has proxy...