No commit activity in last 3 years
No release in over 3 years
Simple Ruby API to get exchange rates from currencies using Yahoo finance currency converter and XE currency converter. You can convert currencies directly through this library.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0

Runtime

 Project Readme

CurrencyConverter

Gem Version Build Status Code Climate Dependency Status License Coverage Status

Simple Ruby API to get exchange rates from currencies using Yahoo finance currency converter and XE currency converter. You can convert currencies directly through this library.

Installation

Add this line to your application's Gemfile:

gem 'currency_converter'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install currency_converter

Usage

To convert between two currencies using XE currency converter:

currency_converter = CurrencyConverter::XE.new
currency_converter.exchange('EUR', 'USD', 100)
=> 132.89

currency_converter.exchange('USD', 'EUR', 100)
=> 75.15

To convert between two currencies using Yahoo finance currency converter:

currency_converter = CurrencyConverter::Yahoo.new
currency_converter.exchange('EUR', 'USD', 1)
=> 1.33

currency_converter.exchange('USD', 'EUR', 1)
=> 0.75

Contributing

  1. Fork it
  2. Add tests for it.
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request