0.0
No commit activity in last 3 years
No release in over 3 years
Wechselkurse is a Ruby wrapper and CLI for some APIs of currency exchange rates.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.10
>= 0
>= 0
~> 10.0
~> 3.0
>= 0

Runtime

 Project Readme

Wechselkurse

Build Status Code Climate Test Coverage

Wechselkurse is a Ruby wrapper and CLI for some APIs of currency exchange rates.

Installation

Add this line to your application's Gemfile:

gem 'wechselkurse'

And then execute:

$ bundle

Or install it yourself as:

$ gem install wechselkurse

Usage

Create/update your docker images:

$ docker build -t wechselkurse .

Run your containers:

$ docker run -e CURRENCYLAYER_ACCESS_KEY=access_key -e SLACK_WEBHOOK_URL=some_url -e SLACK_CHANNEL=channel -e SLACK_USERNAME=username wechselkurse
require 'wechselkurse'

# List the exchange rates
Wechselkurse::Currencylayer.exchange_rates(source: 'USD', currencies: ['EUR', 'BRL'], date: Date.today)

# Calculate exchange rate
Wechselkurse::Currencylayer.exchange_rate(source: 'USD', currencies: ['EUR', 'BRL'], value: 100, date: Date.today)

# Get the highest exchange rate in the last seven days
Wechselkurse::Currencylayer.highest_exchange_rate(source: 'USD', target: 'EUR')

Access application container:

$ docker run -e CURRENCYLAYER_ACCESS_KEY=access_key -e SLACK_WEBHOOK_URL=some_url -e SLACK_CHANNEL=channel -e SLACK_USERNAME=username wechselkurse bash

Running tests cases:

$ docker run -e CURRENCYLAYER_ACCESS_KEY=access_key wechselkurse bundle exec rspec

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.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/icaroseara/wechselkurse.