Class: ActiveMerchant::CountryCode

Inherits:
Object
  • Object
show all
Defined in:
lib/active_merchant/common/country.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ CountryCode

Returns a new instance of CountryCode.



13
14
15
16
# File 'lib/active_merchant/common/country.rb', line 13

def initialize(value)
  @value = value.to_s.upcase
  detect_format
end

Instance Attribute Details

#formatObject (readonly)

Returns the value of attribute format.



12
13
14
# File 'lib/active_merchant/common/country.rb', line 12

def format
  @format
end

#valueObject (readonly)

Returns the value of attribute value.



12
13
14
# File 'lib/active_merchant/common/country.rb', line 12

def value
  @value
end

Instance Method Details

#to_sObject



18
19
20
# File 'lib/active_merchant/common/country.rb', line 18

def to_s
  value
end