einvoicing 0.2.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 +7 -0
- data/lib/einvoicing/version.rb +5 -0
- data/lib/einvoicing.rb +10 -0
- metadata +43 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: d6bcd9f49244d9bbf84368950614affcd7aa4d5c1b0c04d916fccb7f7fc746f1
|
|
4
|
+
data.tar.gz: f545fef84047395303df7de366869e9141f902aafcb36ddb4d6950ea1a418437
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: f38dec217a71dd543058aa3e0fc92f66f92250eda2f64a6c23dccf247689e47ff5891bcd99e6b8186a6791b7814fca95347b3ec9a14dfdd05c42c1c0d2d5741a
|
|
7
|
+
data.tar.gz: cf284e33d542d80acc5e693d5d46f4b0639f8b9f8c99887d98316e086efaaf6919514c66b12af8b4cc19a40f96b396948f856fe5de40b554e546efce3615efd3
|
data/lib/einvoicing.rb
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "einvoicing/version"
|
|
4
|
+
|
|
5
|
+
# einvoicing — EU electronic invoicing for Ruby
|
|
6
|
+
# EN 16931, Factur-X (PDF/A-3), UBL 2.1, French B2B compliance.
|
|
7
|
+
#
|
|
8
|
+
# This gem is under active development. A full release is coming soon.
|
|
9
|
+
# See https://github.com/sxnlabs/einvoicing for updates.
|
|
10
|
+
raise NotImplementedError, "einvoicing gem is not yet available. Check back soon."
|
metadata
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: einvoicing
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.2.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: E-invoicing gem for Ruby targeting the French September 2026 mandate.
|
|
13
|
+
Full release coming soon. See https://github.com/sxnlabs/einvoicing
|
|
14
|
+
email:
|
|
15
|
+
- contact@sxnlabs.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- lib/einvoicing.rb
|
|
21
|
+
- lib/einvoicing/version.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.2'
|
|
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 — EN 16931, Factur-X, UBL 2.1 (coming soon)
|
|
43
|
+
test_files: []
|