wfirma 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.
- checksums.yaml +7 -0
- data/.yardopts +8 -0
- data/CHANGELOG.md +47 -0
- data/LICENSE.txt +21 -0
- data/README.md +287 -0
- data/lib/wfirma/client.rb +54 -0
- data/lib/wfirma/configuration.rb +52 -0
- data/lib/wfirma/contractors.rb +132 -0
- data/lib/wfirma/deep_dup.rb +22 -0
- data/lib/wfirma/drivers/fake/catalogue.rb +44 -0
- data/lib/wfirma/drivers/fake.rb +254 -0
- data/lib/wfirma/drivers/http.rb +111 -0
- data/lib/wfirma/errors.rb +42 -0
- data/lib/wfirma/invoices.rb +96 -0
- data/lib/wfirma/result.rb +122 -0
- data/lib/wfirma/status.rb +60 -0
- data/lib/wfirma/version.rb +3 -0
- data/lib/wfirma.rb +15 -0
- metadata +64 -0
data/lib/wfirma.rb
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
require_relative "wfirma/version"
|
|
2
|
+
require_relative "wfirma/errors"
|
|
3
|
+
require_relative "wfirma/status"
|
|
4
|
+
require_relative "wfirma/deep_dup"
|
|
5
|
+
require_relative "wfirma/drivers/http"
|
|
6
|
+
require_relative "wfirma/drivers/fake"
|
|
7
|
+
require_relative "wfirma/drivers/fake/catalogue"
|
|
8
|
+
require_relative "wfirma/configuration"
|
|
9
|
+
require_relative "wfirma/result"
|
|
10
|
+
require_relative "wfirma/invoices"
|
|
11
|
+
require_relative "wfirma/contractors"
|
|
12
|
+
require_relative "wfirma/client"
|
|
13
|
+
|
|
14
|
+
module Wfirma
|
|
15
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: wfirma
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Radosław Woźniak
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: Issue VAT invoices in wFirma, resolve customers in the contractor catalogue,
|
|
13
|
+
fetch invoice PDFs and have wFirma email them. Pure Ruby, stdlib only, with a Fake
|
|
14
|
+
driver for development and tests.
|
|
15
|
+
email:
|
|
16
|
+
- 184065+radwo@users.noreply.github.com
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- ".yardopts"
|
|
22
|
+
- CHANGELOG.md
|
|
23
|
+
- LICENSE.txt
|
|
24
|
+
- README.md
|
|
25
|
+
- lib/wfirma.rb
|
|
26
|
+
- lib/wfirma/client.rb
|
|
27
|
+
- lib/wfirma/configuration.rb
|
|
28
|
+
- lib/wfirma/contractors.rb
|
|
29
|
+
- lib/wfirma/deep_dup.rb
|
|
30
|
+
- lib/wfirma/drivers/fake.rb
|
|
31
|
+
- lib/wfirma/drivers/fake/catalogue.rb
|
|
32
|
+
- lib/wfirma/drivers/http.rb
|
|
33
|
+
- lib/wfirma/errors.rb
|
|
34
|
+
- lib/wfirma/invoices.rb
|
|
35
|
+
- lib/wfirma/result.rb
|
|
36
|
+
- lib/wfirma/status.rb
|
|
37
|
+
- lib/wfirma/version.rb
|
|
38
|
+
homepage: https://github.com/trusive/wfirma
|
|
39
|
+
licenses:
|
|
40
|
+
- MIT
|
|
41
|
+
metadata:
|
|
42
|
+
source_code_uri: https://github.com/trusive/wfirma
|
|
43
|
+
changelog_uri: https://github.com/trusive/wfirma/blob/main/CHANGELOG.md
|
|
44
|
+
bug_tracker_uri: https://github.com/trusive/wfirma/issues
|
|
45
|
+
documentation_uri: https://rubydoc.info/gems/wfirma
|
|
46
|
+
rubygems_mfa_required: 'true'
|
|
47
|
+
rdoc_options: []
|
|
48
|
+
require_paths:
|
|
49
|
+
- lib
|
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.3'
|
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '0'
|
|
60
|
+
requirements: []
|
|
61
|
+
rubygems_version: 3.6.9
|
|
62
|
+
specification_version: 4
|
|
63
|
+
summary: Ruby client for the wFirma API
|
|
64
|
+
test_files: []
|