lib/latinum/currencies/global.rb in latinum-1.5.0 vs lib/latinum/currencies/global.rb in latinum-1.6.0
- old
+ new
@@ -26,59 +26,73 @@
module Latinum
module Currencies
Global = {}
+ # @name Global[:NZD]
+ # @attribute [Hash] The New Zealand Dollar configuration.
Global[:NZD] = {
:precision => 2,
:symbol => '$',
:name => 'NZD',
:description => 'New Zealand Dollar',
:formatter => Formatters::DecimalCurrencyFormatter,
}
+ # @name Global[:GBP]
+ # @attribute [Hash] The Great British Pound configuration.
Global[:GBP] = {
:precision => 2,
:symbol => '£',
:name => 'GBP',
:description => 'Pound Sterling',
:formatter => Formatters::DecimalCurrencyFormatter,
}
+ # @name Global[:AUD]
+ # @attribute [Hash] The Australian Dollar configuration.
Global[:AUD] = {
:precision => 2,
:symbol => '$',
:name => 'AUD',
:description => 'Australian Dollar',
:formatter => Formatters::DecimalCurrencyFormatter,
}
+ # @name Global[:USD]
+ # @attribute [Hash] The United States Dollar configuration.
Global[:USD] = {
:precision => 2,
:symbol => '$',
:name => 'USD',
:description => 'United States Dollar',
:formatter => Formatters::DecimalCurrencyFormatter,
}
+ # @name Global[:EUR]
+ # @attribute [Hash] The Euro configuration.
Global[:EUR] = {
:precision => 2,
:symbol => '€',
:name => 'EUR',
:description => 'Euro',
:formatter => Formatters::DecimalCurrencyFormatter,
#:delimeter => '.',
#:separator => ','
}
+ # @name Global[:JPY]
+ # @attribute [Hash] The Japanese Yen configuration.
Global[:JPY] = {
:precision => 0,
:symbol => '¥',
:name => 'JPY',
:description => 'Japanese Yen',
:formatter => Formatters::DecimalCurrencyFormatter
}
+ # @name Global[:BTC]
+ # @attribute [Hash] The Bitcoin configuration.
Global[:BTC] = {
:precision => 8,
:symbol => 'B⃦',
:name => 'BTC',
:description => 'Bitcoin',