nfse 0.0.3

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.
@@ -0,0 +1,30 @@
1
+ module Nfse
2
+
3
+ class ConsultaLote < Base
4
+ attr_accessor :code_ibge, :cnpj, :inscricao_municipal, :protocolo
5
+
6
+
7
+ def initialize(code_ibge, cnpj, inscricao_municipal, protocolo)
8
+ self.template_path = File.expand_path("../../templates/", __FILE__)
9
+
10
+ @code_ibge = code_ibge
11
+ @cnpj = cnpj
12
+ @inscricao_municipal = inscricao_municipal
13
+ @protocolo = protocolo
14
+ end
15
+
16
+ def consultar()
17
+ wsdl = get_wsdl[@code_ibge]
18
+ client = Savon.client(wsdl: wsdl)
19
+ xml = self.render
20
+ response = client.call(:consultar_lote_rps, xml: xml)
21
+ data = response.body
22
+ data = data[:consultar_lote_rps_response][:consultar_lote_rps_result]
23
+
24
+ xml_doc = Nokogiri::XML(data)
25
+ return xml_doc.xpath("//MensagemRetorno").text()
26
+ end
27
+
28
+ end
29
+
30
+ end
@@ -0,0 +1,72 @@
1
+ require 'xmldsig'
2
+
3
+ module Nfse
4
+
5
+ class EnviaLote < Base
6
+ attr_accessor :code_ibge, :lote, :xml_lote
7
+
8
+ def initialize(code_ibge, lote)
9
+ self.template_path = File.expand_path("../../templates/", __FILE__)
10
+
11
+ @code_ibge = code_ibge
12
+ @lote = lote
13
+ end
14
+
15
+ def enviar_lote_rps()
16
+ wsdl = get_wsdl[@code_ibge]
17
+ client = Savon.client(
18
+ wsdl: wsdl,
19
+ ssl_cert: OpenSSL::X509::Certificate.new(File.read('cert.pem')),
20
+ ssl_cert_key: OpenSSL::PKey::RSA.new(File.read('cert.pem'))
21
+ )
22
+ @xml_lote = self.assinar_xml(@lote.render, 'cert.pem').gsub('<?xml version="1.0"?>', '')
23
+ #export_xml(self.render, 'teste-signed.xml')
24
+ response = client.call(:gerar_nfse, xml: self.render)
25
+ data = response.body[:gerar_nfse_response][:output_xml]
26
+ #Tratar retorno com erros
27
+ xml = Nokogiri::XML(data)
28
+ if xml.xpath('//xmlns:MensagemRetorno').empty?
29
+ return data
30
+ else
31
+ puts data
32
+ return nil
33
+ end
34
+ end
35
+
36
+ def assinar_xml(xml_original, certificado)
37
+ xml = sign_xml(xml_original, certificado)
38
+ xml = add_cert_to_xml(xml, certificado, "//ds:Signature/ds:KeyInfo/ds:X509Data/ds:X509Certificate")
39
+ return xml
40
+ end
41
+
42
+ private
43
+
44
+ def load_xml(xml_input)
45
+ Nokogiri::XML(File.open(xml_input)).to_xml(:save_with => Nokogiri::XML::Node::SaveOptions::AS_XML)
46
+ end
47
+
48
+ def sign_xml(unsigned_xml, pem_file)
49
+ private_key = OpenSSL::PKey::RSA.new(File.read(pem_file))
50
+ unsigned_document = Xmldsig::SignedDocument.new(unsigned_xml, id_attr: "Id")
51
+ unsigned_document.sign(private_key)
52
+ end
53
+
54
+ def add_cert_to_xml(signed_xml, pem_file, path)
55
+ signed_xml = Nokogiri::XML(signed_xml)
56
+
57
+ certificate = '';
58
+ OpenSSL::X509::Certificate.new(File.read(pem_file)).to_pem.each_line do |line|
59
+ certificate += line unless /^-{5}/.match(line)
60
+ end
61
+
62
+ signed_xml.xpath(path, {"ds" => "http://www.w3.org/2000/09/xmldsig#"}).last.content = certificate
63
+
64
+ signed_xml.to_xml(:save_with => Nokogiri::XML::Node::SaveOptions::AS_XML)
65
+ end
66
+
67
+ def export_xml(xml_text, xml_file)
68
+ File.write(xml_file, xml_text)
69
+ end
70
+
71
+ end
72
+ end
data/lib/nfse/lote.rb ADDED
@@ -0,0 +1,68 @@
1
+ require 'mustache'
2
+
3
+ module Nfse
4
+ module Envio
5
+
6
+ class Lote < Mustache
7
+ attr_accessor :id, :numero_lote, :cnpj, :inscricao_municipal, :quantidade, :lista_rps
8
+
9
+ def initialize(args)
10
+ self.template_path = File.expand_path("../../templates/", __FILE__)
11
+ args = defaults.merge(args)
12
+
13
+ @lista_rps = []
14
+ @id = args[:id]
15
+ @numero_lote = args[:numero_lote]
16
+ @cnpj = args[:cnpj]
17
+ @inscricao_municipal = args[:inscricao_municipal]
18
+ end
19
+
20
+ def quantidade
21
+ @quantidade = @lista_rps.size
22
+ end
23
+
24
+ def defaults
25
+ {id: 'assinar'}
26
+ end
27
+
28
+ def add_rps(rps)
29
+ @lista_rps << rps
30
+ end
31
+
32
+ def render_rps
33
+ @lista_rps.reduce('') do |xml,obj|
34
+ xml << assinar_xml(obj.render, 'cert.pem').gsub('<?xml version="1.0"?>', '')
35
+ end
36
+ end
37
+
38
+ def assinar_xml(xml_original, certificado)
39
+ xml = sign_xml(xml_original, certificado)
40
+ xml = add_cert_to_xml(xml, certificado, "//ds:Signature/ds:KeyInfo/ds:X509Data/ds:X509Certificate")
41
+ return xml
42
+ end
43
+
44
+ private
45
+ def sign_xml(unsigned_xml, pem_file)
46
+ private_key = OpenSSL::PKey::RSA.new(File.read(pem_file))
47
+ unsigned_document = Xmldsig::SignedDocument.new(unsigned_xml, id_attr: "Id")
48
+ unsigned_document.sign(private_key)
49
+ end
50
+
51
+ def add_cert_to_xml(signed_xml, pem_file, path)
52
+ signed_xml = Nokogiri::XML(signed_xml)
53
+
54
+ certificate = '';
55
+ OpenSSL::X509::Certificate.new(File.read(pem_file)).to_pem.each_line do |line|
56
+ certificate += line unless /^-{5}/.match(line)
57
+ end
58
+
59
+ signed_xml.xpath(path, {"ds" => "http://www.w3.org/2000/09/xmldsig#"}).each do |element|
60
+ element.content = certificate
61
+ end
62
+ signed_xml.to_xml(:save_with => Nokogiri::XML::Node::SaveOptions::AS_XML)
63
+ end
64
+ end
65
+
66
+ end
67
+
68
+ end
@@ -0,0 +1,19 @@
1
+ require 'mustache'
2
+
3
+ module Nfse
4
+ module Envio
5
+
6
+ class Prestador < Mustache
7
+ attr_accessor :cnpj, :inscricao_municipal, :razao_social
8
+
9
+ def initialize(args)
10
+ self.template_path = File.expand_path("../../templates/", __FILE__)
11
+
12
+ @cnpj = args[:cnpj]
13
+ @inscricao_municipal = args[:inscricao_municipal]
14
+ @razao_social = args[:razao_social]
15
+ end
16
+ end
17
+
18
+ end
19
+ end
data/lib/nfse/rps.rb ADDED
@@ -0,0 +1,28 @@
1
+ require 'mustache'
2
+
3
+ module Nfse
4
+ module Envio
5
+
6
+ class Rps < Mustache
7
+ attr_accessor :numero, :serie, :tipo,
8
+ :prestador, :tomador, :servico,
9
+ :data_emissao, :data_competencia,
10
+ :regime_tributacao, :icentivo_fiscal, :simples_nacional
11
+
12
+ def initialize(args)
13
+ self.template_path = File.expand_path("../../templates/", __FILE__)
14
+
15
+ @numero = args[:numero]
16
+ @serie = args[:serie]
17
+ @tipo = args[:tipo]
18
+ @data_emissao = args[:data_emissao]
19
+ @data_competencia = args[:data_competencia]
20
+ @regime_tributacao = args[:regime_tributacao]
21
+ @icentivo_fiscal = args[:icentivo_fiscal]
22
+ @simples_nacional = args[:simples_nacional]
23
+ end
24
+
25
+ end
26
+
27
+ end
28
+ end
@@ -0,0 +1,32 @@
1
+ require 'mustache'
2
+
3
+ module Nfse
4
+ module Envio
5
+
6
+ class Servico < Mustache
7
+ attr_accessor :valor_total, :valor_imposto, :aliquota,
8
+ :codigo_servico, :codigo_cnae, :codigo_tributacao,
9
+ :descricao_servico, :codigo_municipio
10
+
11
+ def initialize(args)
12
+
13
+ self.template_path = File.expand_path("../../templates/", __FILE__)
14
+
15
+ @valor_total = formatted_value(args[:valor_total])
16
+ @valor_imposto = formatted_value(args[:valor_imposto])
17
+ @aliquota = args[:aliquota]
18
+ @codigo_servico = args[:codigo_servico]
19
+ @codigo_cnae = args[:codigo_cnae]
20
+ @codigo_tributacao = args[:codigo_tributacao]
21
+ @descricao_servico = args[:descricao_servico]
22
+ @codigo_municipio = args[:codigo_municipio]
23
+ end
24
+
25
+ #1.500,20 => 1500.20
26
+ def formatted_value(value)
27
+ return value
28
+ end
29
+ end
30
+
31
+ end
32
+ end
@@ -0,0 +1,59 @@
1
+ require 'mustache'
2
+
3
+ module Nfse
4
+ module Envio
5
+
6
+ class Tomador < Mustache
7
+ attr_accessor :cpf_cnpj, :cpf, :cnpj, :razao_social, :endereco, :endereco_numero,
8
+ :complemento, :bairro, :cod_cidade, :uf, :cep,
9
+ :telefone, :email
10
+
11
+
12
+ def initialize(args)
13
+ self.template_path = File.expand_path("../../templates/", __FILE__)
14
+
15
+ @cpf_cnpj = args[:cpf_cnpj]
16
+ @razao_social = args[:razao_social]
17
+ @endereco = args[:endereco]
18
+ @endereco_numero = args[:endereco_numero]
19
+ @complemento = args[:complemento]
20
+ @bairro = args[:bairro]
21
+ @cod_cidade = args[:cod_cidade]
22
+ @uf = args[:uf]
23
+ @cep = args[:cep]
24
+ @telefone = args[:telefone]
25
+ @email = args[:email]
26
+
27
+ self.formatted_doc()
28
+ end
29
+
30
+ def formatted_doc
31
+ doc = @cpf_cnpj
32
+ doc = doc.tr('.', '').tr('-', '').tr('/', '')
33
+
34
+ if doc.length == 14
35
+ @cnpj = doc
36
+ else
37
+ @cpf = doc
38
+ end
39
+ end
40
+
41
+ def has_address?
42
+ [@endereco, @endereco_numero, @bairro, @cod_cidade, @uf, @cep].all?
43
+ end
44
+
45
+ def has_contact?
46
+ [@telefone, @email].any?
47
+ end
48
+
49
+ def complemento
50
+ if @complemento.empty? then nil else @complemento end
51
+ end
52
+
53
+ def cep
54
+ if @cep.empty? then nil else @cep.scan(/\d/).join end
55
+ end
56
+ end
57
+
58
+ end
59
+ end
data/lib/nfse_gem.rb ADDED
@@ -0,0 +1,27 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
+ require 'mustache'
3
+ require 'savon'
4
+ require 'xmldsig'
5
+ require 'nokogiri'
6
+ module Nfse
7
+ Envio = Module.new
8
+ Envio.autoload(:Lote, 'nfse/lote.rb')
9
+ Envio.autoload(:Rps, 'nfse/rps.rb')
10
+ Envio.autoload(:Prestador, 'nfse/prestador.rb')
11
+ Envio.autoload(:Tomador, 'nfse/tomador.rb')
12
+ Envio.autoload(:Servico, 'nfse/servico.rb')
13
+
14
+ Pdf = Module.new
15
+ Pdf.autoload(:Document, 'danfe/document.rb')
16
+ Pdf.autoload(:Descricao, 'danfe/descricao.rb')
17
+ Pdf.autoload(:Helper, 'danfe/helper.rb')
18
+ Pdf.autoload(:XML, 'danfe/xml.rb')
19
+ Pdf.autoload(:DanfseGenerator, 'danfe/danfse_generator.rb')
20
+
21
+ autoload(:Base, 'nfse/base.rb')
22
+ autoload(:ConsultaLote, 'nfse/consultalote.rb')
23
+ autoload(:EnviaLote, 'nfse/envialote.rb')
24
+ end
25
+
26
+
27
+
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soapenv:Body>
4
+ <ns2:ConsultarLoteRpsRequest xmlns:ns2="http://ws.bhiss.pbh.gov.br">
5
+ <nfseCabecMsg>
6
+ <![CDATA[<cabecalho versao="1.00" xmlns="http://www.abrasf.org.br/nfse.xsd"><versaoDados>1.00</versaoDados></cabecalho>]]>
7
+ </nfseCabecMsg>
8
+ <nfseDadosMsg>
9
+ <![CDATA[<![CDATA[
10
+ <ConsultarLoteRpsEnvio xmlns="http://www.abrasf.org.br/nfse.xsd">
11
+ <Prestador><CpfCnpj><Cnpj>{{cnpj}}</Cnpj></CpfCnpj><InscricaoMunicipal>{{inscricao_municipal}}</InscricaoMunicipal></Prestador>
12
+ <Protocolo>{{protocolo}}</Protocolo>
13
+ </ConsultarLoteRpsEnvio>]]>
14
+ </nfseDadosMsg>
15
+ </ns2:ConsultarLoteRpsRequest>
16
+ </soapenv:Body>
17
+ </soapenv:Envelope>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
3
+ <soapenv:Body>
4
+ <ns2:GerarNfseRequest xmlns:ns2="http://ws.bhiss.pbh.gov.br">
5
+ <nfseCabecMsg>
6
+ <![CDATA[<cabecalho versao="1.00" xmlns="http://www.abrasf.org.br/nfse.xsd"><versaoDados>1.00</versaoDados></cabecalho>]]>
7
+ </nfseCabecMsg>
8
+ <nfseDadosMsg>
9
+ <![CDATA[{{{xml_lote}}}]]>
10
+ </nfseDadosMsg>
11
+ </ns2:GerarNfseRequest>
12
+ </soapenv:Body>
13
+ </soapenv:Envelope>
@@ -0,0 +1,25 @@
1
+ <GerarNfseEnvio xmlns="http://www.abrasf.org.br/nfse.xsd">
2
+ <LoteRps Id="{{id}}" versao="1.00">
3
+ <NumeroLote>{{numero_lote}}</NumeroLote>
4
+ <Cnpj>{{cnpj}}</Cnpj>
5
+ <InscricaoMunicipal>{{inscricao_municipal}}</InscricaoMunicipal>
6
+ <QuantidadeRps>{{quantidade}}</QuantidadeRps>
7
+ <ListaRps>{{{render_rps}}}</ListaRps>
8
+ </LoteRps>
9
+ <Signature xmlns="http://www.w3.org/2000/09/xmldsig#" Id="Ass_{{id}}">
10
+ <SignedInfo>
11
+ <CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments"/>
12
+ <SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
13
+ <Reference URI="#{{id}}">
14
+ <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
15
+ <DigestValue>{{{digest_value}}}</DigestValue>
16
+ </Reference>
17
+ </SignedInfo>
18
+ <SignatureValue>{{{signature_value}}}</SignatureValue>
19
+ <KeyInfo>
20
+ <X509Data>
21
+ <X509Certificate>{{{x509_certificate}}}</X509Certificate>
22
+ </X509Data>
23
+ </KeyInfo>
24
+ </Signature>
25
+ </GerarNfseEnvio>
@@ -0,0 +1,4 @@
1
+ <Prestador>
2
+ <Cnpj>{{cnpj}}</Cnpj>
3
+ <InscricaoMunicipal>{{inscricao_municipal}}</InscricaoMunicipal>
4
+ </Prestador>
@@ -0,0 +1,34 @@
1
+ <Rps>
2
+ <InfRps xmlns="http://www.abrasf.org.br/nfse.xsd" Id="rps{{numero}}{{serie}}">
3
+ <IdentificacaoRps xmlns="http://www.abrasf.org.br/nfse.xsd">
4
+ <Numero>{{numero}}</Numero>
5
+ <Serie>{{serie}}</Serie>
6
+ <Tipo>{{tipo}}</Tipo>
7
+ </IdentificacaoRps>
8
+ <DataEmissao>{{data_emissao}}</DataEmissao>
9
+ <NaturezaOperacao>1</NaturezaOperacao>
10
+ <RegimeEspecialTributacao>6</RegimeEspecialTributacao>
11
+ <OptanteSimplesNacional>{{simples_nacional}}</OptanteSimplesNacional>
12
+ <IncentivadorCultural>2</IncentivadorCultural>
13
+ <Status>1</Status>
14
+ {{{servico.render}}}
15
+ {{{prestador.render}}}
16
+ {{{tomador.render}}}
17
+ </InfRps>
18
+ <Signature xmlns="http://www.w3.org/2000/09/xmldsig#" Id="Ass_rps{{numero}}{{serie}}">
19
+ <SignedInfo>
20
+ <CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments"/>
21
+ <SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
22
+ <Reference URI="#rps{{numero}}{{serie}}">
23
+ <DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
24
+ <DigestValue>{{{digest_value}}}</DigestValue>
25
+ </Reference>
26
+ </SignedInfo>
27
+ <SignatureValue>{{{signature_value}}}</SignatureValue>
28
+ <KeyInfo>
29
+ <X509Data>
30
+ <X509Certificate>{{{x509_certificate}}}</X509Certificate>
31
+ </X509Data>
32
+ </KeyInfo>
33
+ </Signature>
34
+ </Rps>
@@ -0,0 +1,22 @@
1
+ <Servico>
2
+ <Valores>
3
+ <ValorServicos>{{valor_total}}</ValorServicos>
4
+ <ValorDeducoes>0</ValorDeducoes>
5
+ <ValorPis>0</ValorPis>
6
+ <ValorCofins>0</ValorCofins>
7
+ <ValorInss>0</ValorInss>
8
+ <ValorIr>0</ValorIr>
9
+ <ValorCsll>0</ValorCsll>
10
+ <IssRetido>2</IssRetido>
11
+ <ValorIss>{{valor_imposto}}</ValorIss>
12
+ <OutrasRetencoes>0</OutrasRetencoes>
13
+ <Aliquota>{{aliquota}}</Aliquota>
14
+ <DescontoIncondicionado>0</DescontoIncondicionado>
15
+ <DescontoCondicionado>0</DescontoCondicionado>
16
+ </Valores>
17
+ <ItemListaServico>{{codigo_servico}}</ItemListaServico>
18
+ <CodigoCnae>{{codigo_cnae}}</CodigoCnae>
19
+ <CodigoTributacaoMunicipio>{{codigo_tributacao}}</CodigoTributacaoMunicipio>
20
+ <Discriminacao>{{descricao_servico}}</Discriminacao>
21
+ <CodigoMunicipio>{{codigo_municipio}}</CodigoMunicipio>
22
+ </Servico>
@@ -0,0 +1,51 @@
1
+ <Tomador>
2
+ <IdentificacaoTomador>
3
+ <CpfCnpj>
4
+ {{#cnpj}}
5
+ <Cnpj>{{cnpj}}</Cnpj>
6
+ {{/cnpj}}
7
+
8
+ {{#cpf}}
9
+ <Cpf>{{cpf}}</Cpf>
10
+ {{/cpf}}
11
+ </CpfCnpj>
12
+ </IdentificacaoTomador>
13
+ {{#razao_social}}
14
+ <RazaoSocial>{{razao_social}}</RazaoSocial>
15
+ {{/razao_social}}
16
+ {{#has_address?}}
17
+ <Endereco>
18
+ {{#endereco}}
19
+ <Endereco>{{endereco}}</Endereco>
20
+ {{/endereco}}
21
+ {{#endereco_numero}}
22
+ <Numero>{{endereco_numero}}</Numero>
23
+ {{/endereco_numero}}
24
+ {{#complemento}}
25
+ <Complemento>{{complemento}}</Complemento>
26
+ {{/complemento}}
27
+ {{#bairro}}
28
+ <Bairro>{{bairro}}</Bairro>
29
+ {{/bairro}}
30
+ {{#cod_cidade}}
31
+ <CodigoMunicipio>{{cod_cidade}}</CodigoMunicipio>
32
+ {{/cod_cidade}}
33
+ {{#uf}}
34
+ <Uf>{{uf}}</Uf>
35
+ {{/uf}}
36
+ {{#cep}}
37
+ <Cep>{{cep}}</Cep>
38
+ {{/cep}}
39
+ </Endereco>
40
+ {{/has_address?}}
41
+ {{#has_contact?}}
42
+ <Contato>
43
+ {{#telefone}}
44
+ <Telefone>{{ddd}}{{telefone}}</Telefone>
45
+ {{/telefone}}
46
+ {{#email}}
47
+ <Email>{{email}}</Email>
48
+ {{/email}}
49
+ </Contato>
50
+ {{/has_contact?}}
51
+ </Tomador>
metadata ADDED
@@ -0,0 +1,147 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nfse
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Reinaldo ACDC
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-08-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: mustache
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.99'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.99'
27
+ - !ruby/object:Gem::Dependency
28
+ name: savon
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 2.12.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 2.12.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: xmldsig
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.6.6
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.6.6
55
+ - !ruby/object:Gem::Dependency
56
+ name: nokogiri
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.8'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.8'
69
+ - !ruby/object:Gem::Dependency
70
+ name: prawn
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.2'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.2'
83
+ - !ruby/object:Gem::Dependency
84
+ name: prawn-table
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.2'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.2'
97
+ description:
98
+ email:
99
+ executables: []
100
+ extensions: []
101
+ extra_rdoc_files: []
102
+ files:
103
+ - "./lib/danfe/danfse_generator.rb"
104
+ - "./lib/danfe/descricao.rb"
105
+ - "./lib/danfe/document.rb"
106
+ - "./lib/danfe/helper.rb"
107
+ - "./lib/danfe/xml.rb"
108
+ - "./lib/municipios.json"
109
+ - "./lib/nfse/base.rb"
110
+ - "./lib/nfse/consultalote.rb"
111
+ - "./lib/nfse/envialote.rb"
112
+ - "./lib/nfse/lote.rb"
113
+ - "./lib/nfse/prestador.rb"
114
+ - "./lib/nfse/rps.rb"
115
+ - "./lib/nfse/servico.rb"
116
+ - "./lib/nfse/tomador.rb"
117
+ - "./lib/nfse_gem.rb"
118
+ - "./lib/templates/nfse/consulta_lote.mustache"
119
+ - "./lib/templates/nfse/envia_lote.mustache"
120
+ - "./lib/templates/nfse/envio/lote.mustache"
121
+ - "./lib/templates/nfse/envio/prestador.mustache"
122
+ - "./lib/templates/nfse/envio/rps.mustache"
123
+ - "./lib/templates/nfse/envio/servico.mustache"
124
+ - "./lib/templates/nfse/envio/tomador.mustache"
125
+ homepage:
126
+ licenses: []
127
+ metadata: {}
128
+ post_install_message:
129
+ rdoc_options: []
130
+ require_paths:
131
+ - "./lib"
132
+ required_ruby_version: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - ">="
135
+ - !ruby/object:Gem::Version
136
+ version: '0'
137
+ required_rubygems_version: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - ">="
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ requirements: []
143
+ rubygems_version: 3.3.3
144
+ signing_key:
145
+ specification_version: 4
146
+ summary: Gem para emissão de notas fiscais
147
+ test_files: []