nfeiow 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f074d0b7b0471ab754f49546cdbc32418924146759c678cdaabde4456004d788
4
+ data.tar.gz: 91094265d28c7a1a08c1a9d4994256435da021bf97251efe83bbec8416fe8783
5
+ SHA512:
6
+ metadata.gz: 53715342844b35989e854ccb7ff0092766e84e0545f505d4ff02dbc85214fba03fec18a30dfe590846470e54cc771e36a26e81aefe7617d0d62a88038f9315ea
7
+ data.tar.gz: 39ecab0fc76b778f88d108c9e631a8cfde1749946482cf66d6cc4db3eb77bdcaecfaa2c5f3f5b78cbab41fad4e32652cd0cfb0604365c1ffe425bbcdb13b23b6
@@ -0,0 +1,18 @@
1
+ name: Ruby
2
+
3
+ on: [push,pull_request]
4
+
5
+ jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Set up Ruby
11
+ uses: ruby/setup-ruby@v1
12
+ with:
13
+ ruby-version: 2.6.2
14
+ - name: Run the default task
15
+ run: |
16
+ gem install bundler -v 2.2.1
17
+ bundle install
18
+ bundle exec rspec
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,19 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Documentation:
5
+ Enabled: false
6
+
7
+ Style/StringLiterals:
8
+ Enabled: true
9
+ EnforcedStyle: single_quotes
10
+ SupportedStyles:
11
+ - single_quotes
12
+ - double_quotes
13
+
14
+ Style/StringLiteralsInInterpolation:
15
+ Enabled: true
16
+ EnforcedStyle: double_quotes
17
+
18
+ Layout/LineLength:
19
+ Max: 120
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in nfeiow.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 0.80"
data/Gemfile.lock ADDED
@@ -0,0 +1,113 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ nfeiow (0.1.0)
5
+ excon (>= 0.73.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ addressable (2.7.0)
11
+ public_suffix (>= 2.0.2, < 5.0)
12
+ ast (2.4.2)
13
+ backport (1.1.2)
14
+ benchmark (0.1.1)
15
+ coderay (1.1.3)
16
+ crack (0.4.5)
17
+ rexml
18
+ diff-lcs (1.4.4)
19
+ e2mmap (0.1.0)
20
+ excon (0.78.1)
21
+ hashdiff (1.0.1)
22
+ jaro_winkler (1.5.4)
23
+ kramdown (2.3.0)
24
+ rexml
25
+ kramdown-parser-gfm (1.1.0)
26
+ kramdown (~> 2.0)
27
+ method_source (1.0.0)
28
+ mini_portile2 (2.5.0)
29
+ nokogiri (1.11.1)
30
+ mini_portile2 (~> 2.5.0)
31
+ racc (~> 1.4)
32
+ nokogiri (1.11.1-x86_64-darwin)
33
+ racc (~> 1.4)
34
+ parallel (1.20.1)
35
+ parser (3.0.0.0)
36
+ ast (~> 2.4.1)
37
+ pry (0.13.1)
38
+ coderay (~> 1.1)
39
+ method_source (~> 1.0)
40
+ public_suffix (4.0.6)
41
+ racc (1.5.2)
42
+ rainbow (3.0.0)
43
+ rake (13.0.3)
44
+ regexp_parser (2.0.3)
45
+ reverse_markdown (2.0.0)
46
+ nokogiri
47
+ rexml (3.2.4)
48
+ rspec (3.10.0)
49
+ rspec-core (~> 3.10.0)
50
+ rspec-expectations (~> 3.10.0)
51
+ rspec-mocks (~> 3.10.0)
52
+ rspec-core (3.10.1)
53
+ rspec-support (~> 3.10.0)
54
+ rspec-expectations (3.10.1)
55
+ diff-lcs (>= 1.2.0, < 2.0)
56
+ rspec-support (~> 3.10.0)
57
+ rspec-mocks (3.10.1)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.10.0)
60
+ rspec-support (3.10.1)
61
+ rubocop (0.93.1)
62
+ parallel (~> 1.10)
63
+ parser (>= 2.7.1.5)
64
+ rainbow (>= 2.2.2, < 4.0)
65
+ regexp_parser (>= 1.8)
66
+ rexml
67
+ rubocop-ast (>= 0.6.0)
68
+ ruby-progressbar (~> 1.7)
69
+ unicode-display_width (>= 1.4.0, < 2.0)
70
+ rubocop-ast (1.4.1)
71
+ parser (>= 2.7.1.5)
72
+ ruby-progressbar (1.11.0)
73
+ solargraph (0.40.3)
74
+ backport (~> 1.1)
75
+ benchmark
76
+ bundler (>= 1.17.2)
77
+ e2mmap
78
+ jaro_winkler (~> 1.5)
79
+ kramdown (~> 2.3)
80
+ kramdown-parser-gfm (~> 1.1)
81
+ parser (~> 3.0)
82
+ reverse_markdown (>= 1.0.5, < 3)
83
+ rubocop (>= 0.52)
84
+ thor (~> 1.0)
85
+ tilt (~> 2.0)
86
+ yard (~> 0.9, >= 0.9.24)
87
+ thor (1.1.0)
88
+ tilt (2.0.10)
89
+ unicode-display_width (1.7.0)
90
+ vcr (5.1.0)
91
+ webmock (3.11.1)
92
+ addressable (>= 2.3.6)
93
+ crack (>= 0.3.2)
94
+ hashdiff (>= 0.4.0, < 2.0.0)
95
+ yard (0.9.26)
96
+
97
+ PLATFORMS
98
+ ruby
99
+ x86_64-darwin-20
100
+
101
+ DEPENDENCIES
102
+ bundler (~> 2.0)
103
+ nfeiow!
104
+ pry (~> 0.13.1)
105
+ rake (~> 13.0)
106
+ rspec (~> 3.0)
107
+ rubocop (~> 0.80)
108
+ solargraph (~> 0.40)
109
+ vcr (~> 5.1)
110
+ webmock (~> 3.8)
111
+
112
+ BUNDLED WITH
113
+ 2.2.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 Anchieta Júnior
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,86 @@
1
+ # Nfeiow
2
+
3
+ [NFE.io](https://nfe.io) wrapper to create, cancel, download (pdf) and send invoices via email.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'nfeiow'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install nfeiow
20
+
21
+ ## Usage
22
+
23
+ ### Initialize
24
+
25
+ ```rb
26
+ client = Nfeiow::Client.new(company_id, api_key)
27
+ ```
28
+
29
+ ### Connection details
30
+
31
+ ```rb
32
+ client.connection
33
+ ```
34
+
35
+ ### Create invoice - [Api Reference](https://nfe.io/docs/desenvolvedores/rest-api/nota-fiscal-de-servico-v1/#/ServiceInvoices/ServiceInvoices_Post)
36
+
37
+ ```rb
38
+ params = {
39
+ borrower: {
40
+ federalTaxNumber: '65043222018', # Only numbers
41
+ name: 'José Anchieta',
42
+ email: 'anchieta@jose.com',
43
+ address: {
44
+ country: 'BRA',
45
+ postalCode: '86055620', # Only numbers
46
+ street: 'Rua Ulrico Zuinglio',
47
+ number: '870',
48
+ additionalInformation: 'Apto. 550',
49
+ district: 'Gleba Palhano',
50
+ city: {
51
+ code: 4113700,
52
+ name: 'Londrina'
53
+ },
54
+ state: 'PR'
55
+ }
56
+ },
57
+ cityServiceCode: '8599699',
58
+ cnaeCode: '8599699',
59
+ description: 'Cursos online.',
60
+ servicesAmount: 99.9
61
+ }
62
+
63
+ client.create_invoice(params)
64
+ ```
65
+
66
+ ### Cancel invoice - [Api Reference](https://nfe.io/docs/desenvolvedores/rest-api/nota-fiscal-de-servico-v1/#/ServiceInvoices/ServiceInvoices_Delete)
67
+
68
+ ```rb
69
+ client.cancel_invoice(invoice_id)
70
+ ```
71
+
72
+ ### Download invoice (pdf) - [Api Reference](https://nfe.io/docs/desenvolvedores/rest-api/nota-fiscal-de-servico-v1/#/ServiceInvoices/ServiceInvoices_GetDocumentPdf)
73
+
74
+ ```rb
75
+ client.download_invoice_pdf(invoice_id)
76
+ ```
77
+
78
+ ### Send invoice by email - [Api Reference](https://nfe.io/docs/desenvolvedores/rest-api/nota-fiscal-de-servico-v1/#/ServiceInvoices/ServiceInvoices_SendEmail)
79
+
80
+ ```rb
81
+ client.send_invoice_via_email(invoice_id)
82
+ ```
83
+
84
+ ## License
85
+
86
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
data/bin/console ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "nfeiow"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ # (If you use this, don't forget to add pry to your Gemfile!)
11
+ # require "pry"
12
+ # Pry.start
13
+
14
+ require "irb"
15
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/lib/nfeiow.rb ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'nfeiow/version'
4
+ require_relative 'nfeiow/helpers'
5
+ require_relative 'nfeiow/client'
6
+
7
+ module Nfeiow
8
+ module_function
9
+ end
@@ -0,0 +1,84 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'pry'
4
+
5
+ module Nfeiow
6
+ class Client
7
+ include Nfeiow::Helpers
8
+
9
+ attr_reader :company_id, :api_key
10
+
11
+ def initialize(company_id, api_key)
12
+ @company_id = company_id
13
+ @api_key = api_key
14
+ end
15
+
16
+ def connection
17
+ @connection ||= Excon.new(
18
+ 'https://api.nfe.io/'
19
+ )
20
+ end
21
+
22
+ def create_invoice(params)
23
+ safe_http_call do
24
+ connection.post(
25
+ path: "/v1/companies/#{company_id}/serviceinvoices",
26
+ headers: headers,
27
+ body: params.to_json
28
+ )
29
+ end
30
+ end
31
+
32
+ def cancel_invoice(invoice_id)
33
+ safe_http_call do
34
+ connection.delete(
35
+ path: "/v1/companies/#{company_id}/serviceinvoices/#{invoice_id}",
36
+ headers: headers
37
+ )
38
+ end
39
+ end
40
+
41
+ def download_invoice_pdf(invoice_id)
42
+ safe_http_call(true) do
43
+ connection.get(
44
+ path: "/v1/companies/#{company_id}/serviceinvoices/#{invoice_id}/pdf",
45
+ headers: headers
46
+ )
47
+ end
48
+ end
49
+
50
+ def send_invoice_via_email(invoice_id)
51
+ safe_http_call do
52
+ connection.put(
53
+ path: "/v1/companies/#{company_id}/serviceinvoices/#{invoice_id}/sendemail",
54
+ headers: headers
55
+ )
56
+ end
57
+ end
58
+
59
+ private
60
+
61
+ def safe_http_call(download=false)
62
+ response = yield
63
+
64
+ raise response.body unless success_http_status(response.status)
65
+
66
+ result(
67
+ true,
68
+ nil,
69
+ download ? response.headers['Location'] : parse_payload(response.body)
70
+ )
71
+ rescue StandardError => e
72
+ result(false, e.message, nil)
73
+ end
74
+
75
+ def parse_payload(body)
76
+ return "Executed" if body == ""
77
+ JSON.parse(body)
78
+ end
79
+
80
+ def success_http_status(status)
81
+ [200, 201, 202, 302].include?(status)
82
+ end
83
+ end
84
+ end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nfeiow
4
+ module Helpers
5
+ RequestResut = Struct.new(:success?, :error, :value)
6
+
7
+ def headers
8
+ {
9
+ "Content-Type": 'application/json',
10
+ 'Accept': 'application/json',
11
+ 'Authorization': api_key
12
+ }
13
+ end
14
+
15
+ def result(success, error, value)
16
+ RequestResut.new(success, error, value)
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Nfeiow
4
+ VERSION = "0.1.0"
5
+ end
data/nfeiow.gemspec ADDED
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/nfeiow/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "nfeiow"
7
+ spec.version = Nfeiow::VERSION
8
+ spec.authors = ["Instituto Padre Pio"]
9
+ spec.email = ["padrepauloricardo@padrepauloricardo.org"]
10
+
11
+ spec.summary = "A simple wrapper of the NFE io API"
12
+ spec.description = "A simple wrapper of the NFE io API"
13
+ spec.homepage = "https://github.com/institutopadrepio/nfeiow"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 2.6.0"
16
+
17
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+ spec.metadata["source_code_uri"] = "https://github.com/institutopadrepio/nfeiow"
21
+ spec.metadata["changelog_uri"] = "https://github.com/institutopadrepio/nfeiow"
22
+
23
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
25
+ end
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_dependency "excon", ">= 0.73.0"
31
+
32
+ spec.add_development_dependency "bundler", "~> 2.0"
33
+ spec.add_development_dependency "pry", "~> 0.13.1"
34
+ spec.add_development_dependency "rake", "~> 12.3.3"
35
+ spec.add_development_dependency "rspec", "~> 3.0"
36
+ spec.add_development_dependency "rubocop", "~> 1.7"
37
+ spec.add_development_dependency "solargraph", "~> 0.40"
38
+ spec.add_development_dependency "vcr", "~> 5.1"
39
+ spec.add_development_dependency "webmock", "~> 3.8"
40
+ end
metadata ADDED
@@ -0,0 +1,188 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nfeiow
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Instituto Padre Pio
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-02-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: excon
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.73.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.73.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: pry
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.13.1
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.13.1
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 12.3.3
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 12.3.3
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubocop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.7'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.7'
97
+ - !ruby/object:Gem::Dependency
98
+ name: solargraph
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '0.40'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '0.40'
111
+ - !ruby/object:Gem::Dependency
112
+ name: vcr
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '5.1'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '5.1'
125
+ - !ruby/object:Gem::Dependency
126
+ name: webmock
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '3.8'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '3.8'
139
+ description: A simple wrapper of the NFE io API
140
+ email:
141
+ - padrepauloricardo@padrepauloricardo.org
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - ".github/workflows/main.yml"
147
+ - ".gitignore"
148
+ - ".rspec"
149
+ - ".rubocop.yml"
150
+ - Gemfile
151
+ - Gemfile.lock
152
+ - LICENSE.txt
153
+ - README.md
154
+ - Rakefile
155
+ - bin/console
156
+ - bin/setup
157
+ - lib/nfeiow.rb
158
+ - lib/nfeiow/client.rb
159
+ - lib/nfeiow/helpers.rb
160
+ - lib/nfeiow/version.rb
161
+ - nfeiow.gemspec
162
+ homepage: https://github.com/institutopadrepio/nfeiow
163
+ licenses:
164
+ - MIT
165
+ metadata:
166
+ homepage_uri: https://github.com/institutopadrepio/nfeiow
167
+ source_code_uri: https://github.com/institutopadrepio/nfeiow
168
+ changelog_uri: https://github.com/institutopadrepio/nfeiow
169
+ post_install_message:
170
+ rdoc_options: []
171
+ require_paths:
172
+ - lib
173
+ required_ruby_version: !ruby/object:Gem::Requirement
174
+ requirements:
175
+ - - ">="
176
+ - !ruby/object:Gem::Version
177
+ version: 2.6.0
178
+ required_rubygems_version: !ruby/object:Gem::Requirement
179
+ requirements:
180
+ - - ">="
181
+ - !ruby/object:Gem::Version
182
+ version: '0'
183
+ requirements: []
184
+ rubygems_version: 3.0.3
185
+ signing_key:
186
+ specification_version: 4
187
+ summary: A simple wrapper of the NFE io API
188
+ test_files: []