Method: Money::RatesStore::Memory#get_rate
- Defined in:
- lib/money/rates_store/memory.rb
permalink #get_rate(currency_iso_from, currency_iso_to) ⇒ Numeric
Retrieve the rate for the given currencies. Uses Mutex
to synchronize data access. Delegates to Money::RatesStore::Memory
60 61 62 63 64 |
# File 'lib/money/rates_store/memory.rb', line 60 def get_rate(currency_iso_from, currency_iso_to) guard.synchronize do rates[rate_key_for(currency_iso_from, currency_iso_to)] end end |