Method: ActiveMerchant::Billing::MerchantWareVersionFourGateway#initialize

Defined in:
lib/active_merchant/billing/gateways/merchant_ware_version_four.rb

#initialize(options = {}) ⇒ MerchantWareVersionFourGateway

Creates a new MerchantWareVersionFourGateway

The gateway requires that a valid login, password, and name be passed in the options hash.

Options

  • :login - The MerchantWARE SiteID.

  • :password - The MerchantWARE Key.

  • :name - The MerchantWARE Name.



37
38
39
40
# File 'lib/active_merchant/billing/gateways/merchant_ware_version_four.rb', line 37

def initialize(options = {})
  requires!(options, :login, :password, :name)
  super
end