Class: Clutch::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/clutch/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



12
13
14
15
16
17
18
19
20
21
# File 'lib/clutch/configuration.rb', line 12

def initialize
  @clutch_api_key = nil
  @clutch_api_secret = nil
  @clutch_api_base = nil
  @clutch_brand = nil
  @clutch_location = nil
  @clutch_terminal = nil
  @clutch_card_set = nil
  @http_proxy = nil
end

Instance Attribute Details

#clutch_api_baseObject

Returns the value of attribute clutch_api_base.



3
4
5
# File 'lib/clutch/configuration.rb', line 3

def clutch_api_base
  @clutch_api_base
end

#clutch_api_keyObject

Returns the value of attribute clutch_api_key.



3
4
5
# File 'lib/clutch/configuration.rb', line 3

def clutch_api_key
  @clutch_api_key
end

#clutch_api_secretObject

Returns the value of attribute clutch_api_secret.



3
4
5
# File 'lib/clutch/configuration.rb', line 3

def clutch_api_secret
  @clutch_api_secret
end

#clutch_brandObject

Returns the value of attribute clutch_brand.



3
4
5
# File 'lib/clutch/configuration.rb', line 3

def clutch_brand
  @clutch_brand
end

#clutch_card_setObject

Returns the value of attribute clutch_card_set.



3
4
5
# File 'lib/clutch/configuration.rb', line 3

def clutch_card_set
  @clutch_card_set
end

#clutch_locationObject

Returns the value of attribute clutch_location.



3
4
5
# File 'lib/clutch/configuration.rb', line 3

def clutch_location
  @clutch_location
end

#clutch_terminalObject

Returns the value of attribute clutch_terminal.



3
4
5
# File 'lib/clutch/configuration.rb', line 3

def clutch_terminal
  @clutch_terminal
end

#http_proxyObject

Returns the value of attribute http_proxy.



3
4
5
# File 'lib/clutch/configuration.rb', line 3

def http_proxy
  @http_proxy
end