eu_vat_rates_data 2026.7.1 → 2026.8.12
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 +6 -4
- data/data/eu-vat-rates-data.json +1 -1
- data/lib/eu_vat_rates_data/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c47790e72d15ea55faa3e508c992e4a8a8a2634645583008abf4c6fa0bfb77e3
|
|
4
|
+
data.tar.gz: d038406c37195e9131cf66b5ef068e5e816492a0553ed6e7ae313edde45c158e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 27fe5f4c8acb3b53f879174004f633e3a0e3f648d3c21acaf83b36da4b63dc7652e0867db7fedff5278e7c97bd5f324acc572906930209b4a5e56ad0769965a7
|
|
7
|
+
data.tar.gz: db87a46e550d0ec86719c570afcee6ff5ae9cf9c46843603a0619b13c2ad93810bde70baf66b2fa0d5fcd883aad5aabb721106e04bde476bcd851adce78c9e60
|
data/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Also available in: [JavaScript/TypeScript (npm)](https://www.npmjs.com/package/e
|
|
|
24
24
|
|
|
25
25
|
This package gives you VAT **rates** and **format checks** for free, offline, in your code. It does **not** call VIES — `valid_format?()` only checks the shape of a VAT number, not whether it actually exists.
|
|
26
26
|
|
|
27
|
-
For **live VIES validation** — confirming a VAT ID is real, pulling the registered company name and address, and getting
|
|
27
|
+
For **live VIES validation** — confirming a VAT ID is real, pulling the registered company name and address, and getting the VIES consultation number as your reference for the check — there's **[vatnode](https://vatnode.dev)**:
|
|
28
28
|
|
|
29
29
|
- Live VIES validation, with national-database fallback when VIES is down
|
|
30
30
|
- Registered company name, address, registration date
|
|
@@ -38,7 +38,7 @@ curl https://api.vatnode.dev/v1/vat/IE6388047V \
|
|
|
38
38
|
-H "Authorization: Bearer YOUR_API_KEY"
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
[**Get a free API key →**](https://vatnode.dev)
|
|
41
|
+
[**Get a free API key →**](https://vatnode.dev/login?ref=rates-readme-rb)
|
|
42
42
|
|
|
43
43
|
---
|
|
44
44
|
|
|
@@ -112,7 +112,9 @@ EuVatRatesData.flag("XX") # => "" (empty string for unknown/invalid codes)
|
|
|
112
112
|
|
|
113
113
|
## Data source & update frequency
|
|
114
114
|
|
|
115
|
-
|
|
115
|
+
How the daily check works, and what changed when: [vatnode.dev/data](https://vatnode.dev/data?ref=rates-readme-rb).
|
|
116
|
+
|
|
117
|
+
- EU-27 rates: **European Commission TEDB**, checked against the source **daily at 07:00 UTC**, updated on any change
|
|
116
118
|
- Non-EU rates: maintained manually, updated on official rate changes
|
|
117
119
|
- Published to RubyGems only when actual rates change
|
|
118
120
|
|
|
@@ -137,7 +139,7 @@ No package needed — parse it with a single `fetch()` / `http.get()` / `file_ge
|
|
|
137
139
|
|
|
138
140
|
## Covered countries
|
|
139
141
|
|
|
140
|
-
**EU-27** (daily
|
|
142
|
+
**EU-27** (checked daily against EC TEDB, updated on any change):
|
|
141
143
|
|
|
142
144
|
`AT` `BE` `BG` `CY` `CZ` `DE` `DK` `EE` `ES` `FI` `FR` `GR` `HR` `HU` `IE` `IT` `LT` `LU` `LV` `MT` `NL` `PL` `PT` `RO` `SE` `SI` `SK`
|
|
143
145
|
|
data/data/eu-vat-rates-data.json
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: eu_vat_rates_data
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2026.
|
|
4
|
+
version: 2026.8.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Iurii Rogulia
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-08-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: VAT rates (standard, reduced, super-reduced, parking) for 45 European
|
|
14
14
|
countries — EU-27 plus Norway, Switzerland, UK, and more. Includes eu_member flag,
|