Class: Spree::BillingIntegration

Inherits:
PaymentMethod show all
Defined in:
app/models/spree/billing_integration.rb

Instance Method Summary collapse

Methods inherited from PaymentMethod

#auto_capture?, find_sti_class, model_name, #partial_name, #payment_profiles_supported?, #payment_source_class, #reusable_sources, #source_required?, #store_credit?, #supports?, #try_void

Methods included from Preferences::StaticallyConfigurable

#preference_source=, #preferences, #preferences=

Methods inherited from Base

display_includes

Methods included from Core::Permalinks

#generate_permalink, #save_permalink

Instance Method Details

#gatewayObject



10
11
12
13
14
15
16
17
18
19
20
# File 'app/models/spree/billing_integration.rb', line 10

def gateway
  integration_options = options

  # All environments except production considered to be test
  test_server = integration_options[:server] != 'production'
  test_mode = integration_options[:test_mode]

  integration_options[:test] = (test_server || test_mode)

  @gateway ||= gateway_class.new(integration_options)
end

#optionsObject



22
23
24
25
26
# File 'app/models/spree/billing_integration.rb', line 22

def options
  options_hash = {}
  preferences.each { |key, value| options_hash[key.to_sym] = value }
  options_hash
end