Class: ActiveMerchant::CountryCode

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ CountryCode

Returns a new instance of CountryCode.



10
11
12
13
# File 'lib/active_merchant/lib/country.rb', line 10

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

Instance Attribute Details

#formatObject (readonly)

Returns the value of attribute format.



9
10
11
# File 'lib/active_merchant/lib/country.rb', line 9

def format
  @format
end

#valueObject (readonly)

Returns the value of attribute value.



9
10
11
# File 'lib/active_merchant/lib/country.rb', line 9

def value
  @value
end

Instance Method Details

#to_sObject



15
16
17
# File 'lib/active_merchant/lib/country.rb', line 15

def to_s
  value
end