europe 0.0.17 → 0.0.18
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/CHANGELOG.md +5 -4
- data/europe.gemspec +3 -0
- data/lib/europe/countries/countries.rb +2 -2
- data/lib/europe/version.rb +1 -1
- data/test/europe/countries/country_test.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 794ad55570cf9ea7535ce493786274121a6c3617f64211b8676c70f877a5a113
|
|
4
|
+
data.tar.gz: 699800827413a40143516a78211edd1bb542efd868c9d8cf0bfa740d19b2f2d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2bccf16590f7a26f30512c63d350e53ef3ed1978357e70584e3c08d7d16cdcb072f25b09d537782ca03b8e74399299f4c20b7cafe35a128829a2d7b2707a944e
|
|
7
|
+
data.tar.gz: 8227b36d84d9d131f27e286ffd7d29a0d132753da1a55989735ce4a4754125022af87381e4cb95d05b7bf1c93cf15f6860f7a57bd7797f2cb1186eb52700ecad
|
data/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
|
-
|
|
4
|
+
## 0.0.18
|
|
5
|
+
- Added Estonia and Lithuania to eurozone
|
|
6
|
+
- [Full Changelog](https://github.com/gem-shards/europe.rb/compare/v0.0.17...v0.0.18)
|
|
5
7
|
## 0.0.17
|
|
6
8
|
- Removed all UK VAT logic
|
|
7
9
|
- Updated development dependencies
|
|
8
|
-
- [Full Changelog](https://github.com/
|
|
9
|
-
|
|
10
|
+
- [Full Changelog](https://github.com/gem-shards/europe.rb/compare/v0.0.16...v0.0.17)
|
|
10
11
|
## 0.0.16
|
|
11
12
|
- Changed Slovak Republic to Slovakia in country names
|
|
12
13
|
- Updated outdated endpoint for VAT rates, thanks to @firstpromoter
|
|
13
14
|
- Fixed a couple of rubocop issues
|
|
14
|
-
- [Full Changelog](https://github.com/
|
|
15
|
+
- [Full Changelog](https://github.com/gem-shards/europe.rb/compare/v0.0.15...v0.0.16)
|
|
15
16
|
## 0.0.15
|
|
16
17
|
- Checked library on Ruby 2.7
|
|
17
18
|
- Moved repository to gem-shards
|
data/europe.gemspec
CHANGED
|
@@ -15,6 +15,9 @@ Gem::Specification.new do |spec|
|
|
|
15
15
|
'VAT validation, currency exchange rates and ' \
|
|
16
16
|
'country information.'
|
|
17
17
|
spec.homepage = 'https://github.com/gem-shards/europe.rb'
|
|
18
|
+
spec.metadata = {
|
|
19
|
+
'source_code_uri' => 'https://github.com/gem-shards/europe.rb',
|
|
20
|
+
'changelog_uri' => 'https://github.com/gem-shards/europe.rb/blob/master/CHANGELOG.md' }
|
|
18
21
|
spec.license = 'MIT'
|
|
19
22
|
|
|
20
23
|
spec.files = `git ls-files -z`.split("\x0")
|
|
@@ -26,7 +26,7 @@ module Europe
|
|
|
26
26
|
tld: '.de', currency: :EUR, capital: 'Berlin' },
|
|
27
27
|
EE: { name: 'Estonia', source_name: 'Eesti',
|
|
28
28
|
official_name: 'Republic of Estonia',
|
|
29
|
-
tld: '.ee', currency: :
|
|
29
|
+
tld: '.ee', currency: :EUR, capital: 'Tallinn' },
|
|
30
30
|
IE: { name: 'Ireland', source_name: 'Éire',
|
|
31
31
|
official_name: 'Ireland',
|
|
32
32
|
tld: '.ie', currency: :EUR, capital: 'Dublin' },
|
|
@@ -53,7 +53,7 @@ module Europe
|
|
|
53
53
|
tld: '.lv', currency: :EUR, capital: 'Riga' },
|
|
54
54
|
LT: { name: 'Lithuania', source_name: 'Lietuva',
|
|
55
55
|
official_name: 'Republic of Lithuania',
|
|
56
|
-
tld: '.lt', currency: :
|
|
56
|
+
tld: '.lt', currency: :EUR, capital: 'Vilnius' },
|
|
57
57
|
LU: { name: 'Luxembourg', source_name: 'Luxembourg',
|
|
58
58
|
official_name: 'Grand Duchy of Luxembourg',
|
|
59
59
|
tld: '.lu', currency: :EUR, capital: 'Luxembourg City' },
|
data/lib/europe/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: europe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gem shards
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-05-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: byebug
|
|
@@ -181,7 +181,9 @@ files:
|
|
|
181
181
|
homepage: https://github.com/gem-shards/europe.rb
|
|
182
182
|
licenses:
|
|
183
183
|
- MIT
|
|
184
|
-
metadata:
|
|
184
|
+
metadata:
|
|
185
|
+
source_code_uri: https://github.com/gem-shards/europe.rb
|
|
186
|
+
changelog_uri: https://github.com/gem-shards/europe.rb/blob/master/CHANGELOG.md
|
|
185
187
|
post_install_message:
|
|
186
188
|
rdoc_options: []
|
|
187
189
|
require_paths:
|