No commit activity in last 3 years
No release in over 3 years
With the use to this gem , The two major issues will be solved the first one is to find out the various contry related details using either the contry code or the ip-address and the second one is to convert an amount from one currency to another, There are various scenarios where user has to show user locale related information based up on his/her ip-address So in those cases this gem will be really useful.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

currency_converter_cis

With the use to this gem , The two major issues will be solved the first one is to find out the various country related details using either the country code or the ip-address and the second one is to convert an amount from one currency to another, There are various scenarios where user has to show user locale related information based up on his/her ip-address So in those cases this gem will be really useful.

INSTALLTION

First thing you need to do is the installation , you can follow the below mentioned steps to install the gem inside your rails application. You need to add sudo if you are not using rvm(ruby version manager)

gem install currency_converter_cis

Add this following line in your Gemfile and then run bundle install.

gem 'currency_converter_cis' 

USAGE

Once you have installed this gem you can do the following :-

  1. Country Code : "IN" is the contry code
CurrencyConverterCis.country_by_code("IN")
  1. Ip-Address :
CurrencyConverterCis.country_by_ip("xx.xx.xx.xx")
  1. Contry Converter : If you wanted to convert US dollars to Indian National Rupees here 1000 is the amount.
CurrencyConverterCis.exchange(1000, 'USD', 'INR')