einvoicing 0.1.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.

Potentially problematic release.


This version of einvoicing might be problematic. Click here for more details.

Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +20 -0
  3. data/lib/einvoicing.rb +7 -0
  4. metadata +43 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 574cb1c8414ddd225b6a1b4d5b4dd4c50adefd0ba0ea7a24329ec9637e1c5709
4
+ data.tar.gz: bcca4c61e8a9826fdbd926544ac56302e6433cdc9a49176634d6bc698d20a135
5
+ SHA512:
6
+ metadata.gz: e06a69d94ab444a21793388b04d6ced46d8790861eacef76521d14396a5215522342ac614eff0e717e162c3374cc4756d5bd3d2e5e6539600e49b3ec68fc71d8
7
+ data.tar.gz: cb873407a19c494e077956844c401cf98dddac7b7754f9379077b6403add3a740f893ee9c568602d6ee2a41cba9c6489258a425ae1079f9f5016c0915fcd63f5
data/README.md ADDED
@@ -0,0 +1,20 @@
1
+ # einvoicing
2
+
3
+ EU electronic invoicing for Ruby on Rails — EN 16931, Factur-X, UBL 2.1, Peppol and French PPF/PDP transmission.
4
+
5
+ ## Status
6
+
7
+ 🚧 Under active development — targeting September 2026 French mandate.
8
+
9
+ ## Planned Features
10
+
11
+ - Generate Factur-X invoices (PDF/A-3 + embedded EN 16931 XML)
12
+ - Generate UBL 2.1 and CII D16B XML
13
+ - Transmit via French PPF / certified PDPs
14
+ - Peppol network support (DE, BE, NL, SE, ...)
15
+ - Rails engine with `Invoiceable` concern
16
+ - Invoice lifecycle tracking
17
+
18
+ ## Source
19
+
20
+ https://github.com/sxnlabs/einvoicing
data/lib/einvoicing.rb ADDED
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Einvoicing
4
+ VERSION = "0.1.0"
5
+ # EU electronic invoicing — EN 16931, Factur-X, UBL 2.1, Peppol
6
+ # Full implementation coming soon: https://github.com/sxnlabs/einvoicing
7
+ end
metadata ADDED
@@ -0,0 +1,43 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: einvoicing
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Nathan Le Ray
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: EN 16931 compliant e-invoicing for Ruby — Factur-X, UBL 2.1, Peppol,
13
+ French PPF/PDP transmission. Supports EU-wide electronic invoicing mandates.
14
+ email:
15
+ - nathan@sxnlabs.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - README.md
21
+ - lib/einvoicing.rb
22
+ homepage: https://github.com/sxnlabs/einvoicing
23
+ licenses:
24
+ - MIT
25
+ metadata: {}
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubygems_version: 4.0.3
41
+ specification_version: 4
42
+ summary: EU electronic invoicing for Ruby on Rails
43
+ test_files: []