ecb_exchange 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 +4 -4
- data/CHANGELOG.md +7 -2
- data/ecb_exchange.gemspec +11 -11
- data/lib/ecb/exchange.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d2044da1ab4294ec9ca79ee7d0fd73f84f08aa4cbdd33dc59650210203dff19
|
4
|
+
data.tar.gz: e0d37d27b8a1ad40bc0dd1abf81c0835da9b711a034267121cb6992dcc5dd537
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 422ee3ec7152eb3b88db8ba58caf70c708717e5edc7e835570007a40e7acaaecdf10a9e153a0446c47dc5f6c3244d9921cdd6e54bc324e9647c4dabef855b0af
|
7
|
+
data.tar.gz: 1dc30fa6af2e2cd59ae5436cbf8ecd39d600aa82a28d6c9c98a608a18a288b8d75069945ea8861f4474a06c39af9cfd36e8403334284e40f88b9bf8ef2ad6b8e
|
data/CHANGELOG.md
CHANGED
@@ -7,11 +7,16 @@ adheres to [Semantic Versioning](Semver).
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [0.1.1] - 2018-05-05
|
11
|
+
### Changed
|
12
|
+
- Updated gemspec description and summary.
|
13
|
+
|
10
14
|
## [0.1.0] - 2018-05-05
|
11
15
|
### Added
|
12
16
|
- Initial version released.
|
13
17
|
|
14
|
-
[Unreleased]: https://github.com/matthutchinson/ecb_exchange/compare/v0.1.
|
15
|
-
[0.1.
|
18
|
+
[Unreleased]: https://github.com/matthutchinson/ecb_exchange/compare/v0.1.1...HEAD
|
19
|
+
[0.1.1]: https://github.com/matthutchinson/ecb_exchange/compare/v0.1.0...v0.1.1
|
20
|
+
[0.1.0]: https://github.com/matthutchinson/ecb_exchange/compare/e7366b3...v0.1.0
|
16
21
|
[KeepAChangelog]: http://keepachangelog.com/en/1.0.0/
|
17
22
|
[Semver]: http://semver.org/spec/v2.0.0.html
|
data/ecb_exchange.gemspec
CHANGED
@@ -4,20 +4,20 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require 'ecb/exchange'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name
|
8
|
-
spec.version
|
9
|
-
spec.authors
|
10
|
-
spec.email
|
11
|
-
|
12
|
-
spec.license
|
13
|
-
spec.summary
|
14
|
-
|
15
|
-
the last 90 days
|
7
|
+
spec.name = "ecb_exchange"
|
8
|
+
spec.version = ECB::Exchange::VERSION
|
9
|
+
spec.authors = ["Matthew Hutchinson"]
|
10
|
+
spec.email = ["matt@hiddenloop.com"]
|
11
|
+
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.summary = <<-EOF
|
14
|
+
Currency conversion using the European Central Bank's foreign exchange rates.
|
16
15
|
EOF
|
17
16
|
|
18
17
|
spec.description = <<-EOF
|
19
|
-
|
20
|
-
|
18
|
+
Currency conversion using the European Central Bank's foreign exchange rates.
|
19
|
+
Rates for the last 90 days are fetched and cached on demand. All calculations
|
20
|
+
are performed and returned as BigDecimal.
|
21
21
|
EOF
|
22
22
|
|
23
23
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
data/lib/ecb/exchange.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ecb_exchange
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Hutchinson
|
@@ -109,8 +109,9 @@ dependencies:
|
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
111
|
description: |2
|
112
|
-
|
113
|
-
|
112
|
+
Currency conversion using the European Central Bank's foreign exchange rates.
|
113
|
+
Rates for the last 90 days are fetched and cached on demand. All calculations
|
114
|
+
are performed and returned as BigDecimal.
|
114
115
|
email:
|
115
116
|
- matt@hiddenloop.com
|
116
117
|
executables: []
|
@@ -167,6 +168,5 @@ rubyforge_project:
|
|
167
168
|
rubygems_version: 2.7.6
|
168
169
|
signing_key:
|
169
170
|
specification_version: 4
|
170
|
-
summary:
|
171
|
-
from the last 90 days
|
171
|
+
summary: Currency conversion using the European Central Bank's foreign exchange rates.
|
172
172
|
test_files: []
|