# Money Open Exchange Rates A gem that calculates the exchange rate using published rates from [open-exchange-rates](https://openexchangerates.org/) Check [api documentation](https://docs.openexchangerates.org/) * [Live](https://docs.openexchangerates.org/docs/latest-json) and [historical](https://docs.openexchangerates.org/docs/historical-json) exchange rates for [180 currencies](https://docs.openexchangerates.org/docs/supported-currencies). * [Free plan](https://openexchangerates.org/signup) hourly updates, with USD base and up to 1,000 requests/month. * Automatically caches API results to file or Rails cache. * Calculate pair rates. * Automatically fetches new data from API if data becomes stale when `ttl_in_seconds` option is provided. * Support for black market and digital currency rates with `show_alternative` option. ## Installation Add this line to your application's Gemfile: ~~~ ruby gem 'money-open-exchange-rates' ~~~ And then execute: ~~~ bundle ~~~ Or install it yourself as: ~~~ gem install money-open-exchange-rates ~~~ ## Usage ~~~ ruby require 'money/bank/open_exchange_rates_bank' oxr = Money::Bank::OpenExchangeRatesBank.new oxr.cache = 'path/to/file/cache.json' oxr.app_id = 'your app id from https://openexchangerates.org/signup' oxr.update_rates # (optional) # set the seconds after than the current rates are automatically expired # by default, they never expire, in this example 1 day. oxr.ttl_in_seconds = 86400 # (optional) # set historical date of the rate # see https://openexchangerates.org/documentation#historical-data oxr.date = '2015-01-01' # (optional) # Set the base currency for all rates. By default, USD is used. # OpenExchangeRates only allows USD as base currency # for the free plan users. oxr.source = 'USD' # (optional) # Extend returned values with alternative, black market and digital currency # rates. By default, false is used # see: https://docs.openexchangerates.org/docs/alternative-currencies oxr.show_alternative = true # Store in cache # Force rates storage in cache, this is done automaticly after TTL is expire. # If you are using unicorn-worker-killer gem or on Heroku like platform, # you should avoid to put this on the initializer of your Rails application, # because will increase your OXR API usage. oxr.save_rates Money.default_bank = oxr Money.default_bank.get_rate('USD', 'CAD') ~~~ You can also provide a `Proc` as a cache to provide your own caching mechanism perhaps with Redis or just a thread safe `Hash` (global). For example: ~~~ ruby oxr.cache = Proc.new do |v| key = 'money:exchange_rates' if v Thread.current[key] = v else Thread.current[key] end end ~~~ With `Rails` cache example: ~~~ ruby OXR_CACHE_KEY = 'money:exchange_rates'.freeze OXR_CACHE_TTL = 86400 # using same ttl with refreshing current rates and cache oxr.ttl_in_seconds = OXR_CACHE_TTL oxr.cache = Proc.new do |text| if text && !Rails.cache.exist?(OXR_CACHE_KEY) Rails.cache.write(OXR_CACHE_KEY, text, expires_in: OXR_CACHE_TTL) else Rails.cache.read(OXR_CACHE_KEY) end end ~~~ Unknown pair rates are transparently calculated: using inverse rate (if known), or using base currency rate to both currencies forming the pair. ## Full example configuration initializer with Rails and cache ~~~ ruby require 'money/bank/open_exchange_rates_bank' OXR_CACHE_KEY = 'money:exchange_rates'.freeze OXR_CACHE_TTL = 86400 oxr = Money::Bank::OpenExchangeRatesBank.new oxr.ttl_in_seconds = OXR_CACHE_TTL oxr.cache = Proc.new do |text| if text && !Rails.cache.exist?(OXR_CACHE_KEY) Rails.cache.write(OXR_CACHE_KEY, text, expires_in: OXR_CACHE_TTL) else Rails.cache.read(OXR_CACHE_KEY) end end oxr.app_id = ENV['OXR_API_KEY'] oxr.update_rates Money.default_bank = oxr ~~~ ## Tests ~~~ bundle exec rake ~~~ ## Refs * * * * ## Contributors See [GitHub](https://github.com/spk/money-open-exchange-rates/graphs/contributors). ## License The MIT License Copyright © 2011-2018 Laurent Arnoud --- [![Build](https://img.shields.io/travis-ci/spk/money-open-exchange-rates.svg)](https://travis-ci.org/spk/money-open-exchange-rates) [![Version](https://img.shields.io/gem/v/money-open-exchange-rates.svg)](https://rubygems.org/gems/money-open-exchange-rates) [![Documentation](https://img.shields.io/badge/doc-rubydoc-blue.svg)](http://www.rubydoc.info/gems/money-open-exchange-rates) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](http://opensource.org/licenses/MIT "MIT") [![Code Climate](https://img.shields.io/codeclimate/github/spk/money-open-exchange-rates.svg)](https://codeclimate.com/github/spk/money-open-exchange-rates) [![Inline docs](https://inch-ci.org/github/spk/money-open-exchange-rates.svg?branch=master)](http://inch-ci.org/github/spk/money-open-exchange-rates)