Giter VIP home page Giter VIP logo

concurrency's Introduction

Concurrency

Concurrency is a lightweight gem that can be deployed for foreign exchange and currency conversion operation complying the latest rates provided by https://free.currencyconverterapi.com/
It should be noted that the rates provided by the parent API are refreshed every 30 minutes and are not in real time.

Features

This gem can implement the currency conversion operation for the following national currencies -

"AUD" - Australian Dollar, "BGN" - Bulgarian Lev, "BRL" - Brazilian Real, "CAD" - Canadian Dollar, "CHF" - Swiss Franc, "CNY" - Chinese Yuan, "CZK" - Czech Koruna, "DKK" - Danish Krone , "GBP" - British Pound, "HKD" - Hong Kong Dollar, "HRK" - Croatian Kuna, "HUF" - Hungarian Forint, "IDR" - Indonesian Rupiah, "ILS" - Israeli New Shekel, "INR" - Indian Rupee, "JPY" - Japanese Yen, "KRW" - South Korean Won, "MXN" - Mexican Peso, "MYR" - Malaysian Ringgit, "NOK" - Norwegian Krone, "NZD" - New Zealand Dollar, "PHP" - Philippine Peso, "PLN" - Polish Zloty, "RON" - Romanian Leu, "RUB" - Russian Ruble, "SEK" - Swedish Krona, "SGD" - Singapore Dollar, "THB" - Thai Baht, "TRY" - Turkish Lira, "USD" - United States Dollar, "ZAR" - South African Rand,

This gem requires JSON. If you're using JRuby < 1.7.0 you'll need to add gem "json" to your Gemfile or similar.

Installation

To install Concurrency on the default Rails stack, just put this line in your Gemfile:

    gem 'concurrency'

And then execute:

$ bundle

Or install it yourself as:

$ gem install concurrency

Usage

    Concurrency.convert(AMOUNT_TO_BE_CONVERTED, CONVERT_FROM_CURRENCY, CONVERT_TO_CURRENCY)
    Concurrency.convert(100, "NZD", "INR")      # would convert 100 New Zealand Dollars to Indian Rupees
    <%= Concurrency.convert(100, "NZD", "INR") %>      
    Concurrency.conversion_rate("NZD", "INR")    # will return the value of 1 New Zealand Dollar in Indian Rupees

In order to establish default conversion currencies, paste the following code in .../config/initializers/concurrency.rb

    Concurrency.configure do |config|
        config.from_currency = "USD"    #Default value
        config.to_currency = "INR"      #Default value
        config.api_key = ENV['CONCURRENCY_APIKEY']   #Mandatory value
    end
    Concurrency.convert(100)    # would convert 100 USD to INR
    Concurrency.convert(100, "NZD")     # would convert 100 USD to NZD
    Concurrency.conversion_rate     # would convert 1 USD to INR

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Get your API Key here https://free.currencyconverterapi.com/ API Key is mandatory to get the converstion rates.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/naman2202/concurrency. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Concurrency project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

concurrency's People

Contributors

hanishjadala avatar naman2202 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

concurrency's Issues

Old Currency showing

Concurrency.convert(100, "USD", "INR")

Output: 6507.8
Expected: 6484.05

Currency not updated as per current rate.

API Key is missing. Kindly set API key CONCURRENCY_APIKEY

Adding the config.api_key line to concurrency.rb as described in the README does not allow for the API to find the key, unless the key is also provided in the prompt as follows:
Concurrency.convert(50, "USD", "CNY", 'API_KEY')
However, doing so means that the conversion transaction is never properly parsed and the conversion is left to the default values. How can this be resolved?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.