vici-exchange-rates 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: de783d419042d4e43cb16154546f6b1f8ed41246fd38088805fa192867e83426
4
- data.tar.gz: deca20ee8fadfd09d1b8695f8551c5e317d892f83844cb2dd8965f9c327d0ce3
3
+ metadata.gz: 1705658b5b75e3885d806d0e9287f21bf06623f6d20c55a5d6889538fd0a551b
4
+ data.tar.gz: 28678b1ab9c4ee4b19cfa4d92076542bfb144e826a6e780a07cb823c48cbd8dd
5
5
  SHA512:
6
- metadata.gz: cd0a347ca7a7a254709b29cd3aec4c4c7423dc7b6af131186ce361075b3bdf40f80b191e823124ffe93117bd32caf73e0197c0dc950bf30aa88974ea653b0203
7
- data.tar.gz: 4e04812d2acbe44cd7379748bb722fcc5bb095f4b35d5d768f25d9617d60c206ecb25d50f6d95a72764abde7162ae03f0c357a59f53748d78d4db8b834b2eaac
6
+ metadata.gz: 8541d5d987c8cb65486049d51302f35c0bb7d45216215e47d55aec82fed7e063e2ad9ad9cbd1462ee300ed227586c176bdd44f2e962d705d9261377e4f2443e9
7
+ data.tar.gz: 861d34f614f9ae0a0f13076d961c0db11b13792206c09b805d7dbcc64d5e4caa300020505f1234d5a76a23284654f6ef97aa6d2781d46b753f804f23dcbcae62
@@ -0,0 +1,27 @@
1
+ name: CI
2
+
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ push:
8
+ branches:
9
+ - master
10
+
11
+ jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ ruby: [ '2.5.x', '2.6.x' ]
17
+ name: Set up Ruby ${{ matrix.ruby }}
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - uses: actions/setup-ruby@v1
21
+ with:
22
+ ruby-version: ${{ matrix.ruby }}
23
+ - name: Build and test with RSpec
24
+ run: |
25
+ gem install bundler
26
+ bundle install --jobs 4 --retry 3
27
+ bundle exec rspec
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vici-exchange-rates (0.1.0)
4
+ vici-exchange-rates (0.1.1)
5
5
  activesupport (~> 6.0, >= 6.0.2.1)
6
6
  faraday (~> 1.0)
7
7
 
data/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  > A Simple and Rich for Exchange Rates
4
4
 
5
+ ![CI](https://github.com/maful/vici-exchange-rates/workflows/CI/badge.svg?branch=master)
6
+ [![Gem Version](https://badge.fury.io/rb/vici-exchange-rates.svg)](https://badge.fury.io/rb/vici-exchange-rates)
7
+ [![GitHub license](https://img.shields.io/github/license/maful/vici-exchange-rates)](https://github.com/maful/vici-exchange-rates/blob/master/LICENSE.txt)
8
+
5
9
  **Vici::ExchangeRates** is an unofficial SDK for the [ExchangeRatesAPI](https://exchangeratesapi.io). Exchange rates API is a free service for current and historical foreign exchange rates [published by the European Central Bank](https://www.ecb.europa.eu/stats/policy_and_exchange_rates/euro_reference_exchange_rates/html/index.en.html).
6
10
 
7
11
  ### Note
@@ -105,4 +109,4 @@ This project is intended to be a safe, welcoming space for collaboration, and co
105
109
 
106
110
  ## Copyright
107
111
 
108
- Copyright (c) 2020 Maful Prayoga A. See LICENSE for further details.
112
+ Copyright (c) 2020 Maful Prayoga A. See LICENSE for further details.
@@ -1,5 +1,5 @@
1
1
  module Vici
2
2
  class ExchangeRates
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ['mafulprayoga@gmail.com']
10
10
 
11
11
  spec.summary = %q{A Simple and Rich for Exchange Rates}
12
- spec.homepage = 'https://github.com/maful/exchange-rates-exchange-rates'
12
+ spec.homepage = 'https://github.com/maful/vici-exchange-rates'
13
13
  spec.license = 'MIT'
14
14
 
15
15
  # Specify which files should be added to the gem when it is released.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vici-exchange-rates
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - maful
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-01-31 00:00:00.000000000 Z
11
+ date: 2020-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -93,6 +93,7 @@ executables: []
93
93
  extensions: []
94
94
  extra_rdoc_files: []
95
95
  files:
96
+ - ".github/workflows/ci.yml"
96
97
  - ".gitignore"
97
98
  - ".idea/.gitignore"
98
99
  - ".idea/.rakeTasks"
@@ -114,7 +115,7 @@ files:
114
115
  - lib/vici/exchange_rates.rb
115
116
  - lib/vici/exchange_rates/version.rb
116
117
  - vici-exchange-rates.gemspec
117
- homepage: https://github.com/maful/exchange-rates-exchange-rates
118
+ homepage: https://github.com/maful/vici-exchange-rates
118
119
  licenses:
119
120
  - MIT
120
121
  metadata: {}