fixer_currency 3.4.2 → 3.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -0
- data/fixer_currency.gemspec +3 -3
- data/lib/fixer_currency.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 962aa779f915988d8eb614dfa70a98f07e964c50fb8efa4db63e8365424944d2
|
|
4
|
+
data.tar.gz: e81d69142cf26f3f674a5e1b9275a194fbffc1d90560f4d5879512be17d88919
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fdd96f1b0928c759b86930846f2ebde54c74e01527464c04b563a77a74316f467a773a3307dfd6761d9b215ab81c1a1f0a38999ba198345e9b60df4c692a891b
|
|
7
|
+
data.tar.gz: c565f4877a5a5d68c823b7e42950a77daf2c4a4217a1ddea5ea8ac6ae83cb71f65054d3027c9d14bdf7fca55817c7689108f277ebe75d098f379054482cbf2df
|
data/README.md
CHANGED
|
@@ -6,6 +6,16 @@ and gives you access to the current fixer.io exchange rates.
|
|
|
6
6
|
This gem was forked from the [Money::Bank::GoogleCurrency](http://rubymoney.github.com/google_currency)
|
|
7
7
|
gem.
|
|
8
8
|
|
|
9
|
+
Installation
|
|
10
|
+
-----
|
|
11
|
+
If the money gem is not already installed:
|
|
12
|
+
|
|
13
|
+
```gem install money```
|
|
14
|
+
|
|
15
|
+
Install the fixer_currency gem:
|
|
16
|
+
|
|
17
|
+
```gem install fixer_currency```
|
|
18
|
+
|
|
9
19
|
Usage
|
|
10
20
|
-----
|
|
11
21
|
|
data/fixer_currency.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'fixer_currency'
|
|
3
|
-
s.version = '3.4.
|
|
3
|
+
s.version = '3.4.3'
|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
|
5
5
|
s.authors = ['Emily Wilson']
|
|
6
6
|
s.email = ['emilywilson@privy.com']
|
|
@@ -17,8 +17,8 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
s.add_dependency 'money', '~> 6.7'
|
|
18
18
|
|
|
19
19
|
s.files = Dir.glob('{lib,spec}/**/*')
|
|
20
|
-
s.files += %w
|
|
21
|
-
s.files += %w
|
|
20
|
+
s.files += %w[LICENSE README.md CHANGELOG.md AUTHORS]
|
|
21
|
+
s.files += %w[Rakefile .gemtest fixer_currency.gemspec]
|
|
22
22
|
|
|
23
23
|
s.require_path = 'lib'
|
|
24
24
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fixer_currency
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.4.
|
|
4
|
+
version: 3.4.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emily Wilson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-05-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|
|
@@ -82,6 +82,7 @@ files:
|
|
|
82
82
|
- README.md
|
|
83
83
|
- Rakefile
|
|
84
84
|
- fixer_currency.gemspec
|
|
85
|
+
- lib/fixer_currency.rb
|
|
85
86
|
- lib/money/bank/fixer_currency.rb
|
|
86
87
|
- lib/money/rates_store/rate_removal_support.rb
|
|
87
88
|
- spec/fixer_currency_with_json_spec.rb
|
|
@@ -105,8 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
105
106
|
- !ruby/object:Gem::Version
|
|
106
107
|
version: '0'
|
|
107
108
|
requirements: []
|
|
108
|
-
|
|
109
|
-
rubygems_version: 2.7.6
|
|
109
|
+
rubygems_version: 3.0.3
|
|
110
110
|
signing_key:
|
|
111
111
|
specification_version: 4
|
|
112
112
|
summary: Access the fixer.io exchange rate data.
|