Class: ISO3166::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



24
25
26
27
# File 'lib/countries/configuration.rb', line 24

def initialize
  @locales = default_locales
  @loaded_locales = []
end

Instance Attribute Details

#loaded_localesObject

Returns the value of attribute loaded_locales.



22
23
24
# File 'lib/countries/configuration.rb', line 22

def loaded_locales
  @loaded_locales
end

#localesObject

Returns the value of attribute locales.



22
23
24
# File 'lib/countries/configuration.rb', line 22

def locales
  @locales
end

Instance Method Details

#enable_currency_extension!Object

Enables the integration with the Money gem

Please note that it requires you to add “money” gem to your gemfile.

gem "money", "~> 6.9"

WARNING if you have a top level class named Money you will conflict with this gem.

Examples:

c = ISO3166::Country['us']
c.currency.iso_code # => 'USD'
c.currency.name # => 'United States Dollar'
c.currency.symbol # => '$'


42
43
44
45
# File 'lib/countries/configuration.rb', line 42

def enable_currency_extension!
  require 'countries/country/currency_methods'
  ISO3166::Country.prepend(ISO3166::CountryCurrencyMethods)
end