einvoicing 0.4.0 → 0.5.0
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 +9 -0
- data/README.md +2 -0
- data/lib/einvoicing/data/PEPPOL-EN16931-UBL.xslt +3580 -0
- data/lib/einvoicing/formats/ubl.rb +12 -0
- data/lib/einvoicing/party.rb +22 -3
- data/lib/einvoicing/validators/peppol.rb +8 -4
- data/lib/einvoicing/version.rb +1 -1
- metadata +9 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c103791ffce05b80340cbae5a1b09a00f4b5408edd8a70bfac567898be951ee9
|
|
4
|
+
data.tar.gz: 7db7faa121b1e2ab57c6ed9d467602eef8771a61acd57d0ea28eb53050ad9301
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5812428fa6b471a0cc5a34787e74fd473e3ffd5520226e736ce0fc6b144b054caf70c636f8b8b2a2acd834e4ff0d1f8db4bf47747b934e5dfa29e0d217333117
|
|
7
|
+
data.tar.gz: 1cf58d2a1cc101430435611c5091510ec62e48d9c2d0e33e01a827853aecf92ed69d1a57b9cc20a1d245e97768014ff350b669bf51c928d9892b18ebb21c13e4
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.5.0] - 2026-03-14
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Removed stale `spec/einvoicing/siret_lookup_spec.rb` (referenced old `Einvoicing::SiretLookup` class)
|
|
12
|
+
- Peppol validator spec now asserts 0 errors for a valid BIS 3.0 invoice and verifies error messages are non-empty
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- `spec/einvoicing_spec.rb` — facade API specs (`Einvoicing.xml`, `.validate`, `.process`)
|
|
16
|
+
|
|
8
17
|
## [0.4.0] - 2026-03-13
|
|
9
18
|
|
|
10
19
|
### Added
|
data/README.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
[](https://rubygems.org/gems/einvoicing)
|
|
4
4
|
[](https://github.com/sxnlabs/einvoicing/actions)
|
|
5
5
|
|
|
6
|
+
**[Documentation & overview → sxnlabs.com/gems/einvoicing](https://www.sxnlabs.com/en/gems/einvoicing/)**
|
|
7
|
+
|
|
6
8
|
**EN 16931 electronic invoicing for Ruby.** Generate Factur-X (PDF/A-3 + CII XML), UBL 2.1, and CII D16B invoices. Validate French B2B compliance (SIREN, SIRET, TVA). Rails-ready.
|
|
7
9
|
|
|
8
10
|
## Why
|