Method: ActiveMerchant::Billing::PslCardGateway#initialize
- Defined in:
- lib/active_merchant/billing/gateways/psl_card.rb
#initialize(options = {}) ⇒ PslCardGateway
Create a new PslCardGateway
The gateway requires that a valid :login be passed in the options hash
Paramaters:
-options:
:login - the PslCard account login (required)
90 91 92 93 94 |
# File 'lib/active_merchant/billing/gateways/psl_card.rb', line 90 def initialize( = {}) requires!(, :login) super end |