imasei 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,22 @@
1
+ module Imasei
2
+
3
+ module Estruturas
4
+
5
+ class RetornoInclusaoDocumento < ::Valuable
6
+
7
+ has_value :id_documento
8
+ has_value :documento_formatado
9
+ has_value :link_acesso
10
+
11
+ def initialize(params)
12
+ self.id_documento = params[:id_documento]
13
+ self.documento_formatado = params[:documento_formatado]
14
+ self.link_acesso = params[:link_acesso]
15
+ initialize_attributes
16
+ end
17
+
18
+ end
19
+
20
+ end
21
+
22
+ end
@@ -0,0 +1,17 @@
1
+ module Imasei
2
+
3
+ module Estruturas
4
+
5
+ class RetornoInclusaoDocumentoBloco < ::Valuable
6
+
7
+ has_value :status
8
+
9
+ def initialize(params)
10
+ self.status = params
11
+ initialize_attributes
12
+ end
13
+ end
14
+
15
+ end
16
+
17
+ end
@@ -0,0 +1,17 @@
1
+ module Imasei
2
+
3
+ module Estruturas
4
+
5
+ class RetornoInclusaoProcessoBloco < ::Valuable
6
+
7
+ has_value :status
8
+
9
+ def initialize(params)
10
+ self.status = params
11
+ initialize_attributes
12
+ end
13
+ end
14
+
15
+ end
16
+
17
+ end
@@ -0,0 +1,31 @@
1
+ module Imasei
2
+
3
+ module Estruturas
4
+
5
+ class RetornoListUnidades < ::Valuable
6
+
7
+ has_collection :retorno_list_unidades, klass: RetornoUnidade
8
+
9
+ def initialize(params)
10
+
11
+ self.retorno_list_unidades = []
12
+ item = params[:item]
13
+ if item.is_a?(Hash)
14
+ self.retorno_list_unidades << Imasei::Estruturas::RetornoUnidade.new(item)
15
+ elsif item.is_a?(Array)
16
+ item.each do |retorno_lista_unidades|
17
+ self.retorno_list_unidades << Imasei::Estruturas::RetornoUnidade.new(retorno_lista_unidades)
18
+ end
19
+
20
+ end
21
+
22
+ initialize_attributes
23
+ end
24
+ def teste(params)
25
+ debugger
26
+ end
27
+ end
28
+
29
+ end
30
+
31
+ end
@@ -0,0 +1,26 @@
1
+ module Imasei
2
+
3
+ module Estruturas
4
+
5
+ class RetornoListUsuarios < ::Valuable
6
+
7
+ has_collection :retorno_list_usuarios, klass: RetornoUsuario
8
+
9
+ def initialize(params)
10
+ self.retorno_list_usuarios = []
11
+ item = params[:item]
12
+ if item.is_a?(Hash)
13
+ self.retorno_list_usuarios << Imasei::Estruturas::RetornoUsuario.new(item)
14
+ elsif item.is_a?(Array)
15
+ item.each do |retorno_lista_unidades|
16
+ self.retorno_list_usuarios << Imasei::Estruturas::RetornoUsuario.new(retorno_lista_unidades)
17
+ end
18
+ end
19
+ initialize_attributes
20
+ end
21
+
22
+ end
23
+
24
+ end
25
+
26
+ end
@@ -0,0 +1,22 @@
1
+ module Imasei
2
+
3
+ module Estruturas
4
+
5
+ class RetornoInclusaoDocumento < ::Valuable
6
+
7
+ has_value :id_documento
8
+ has_value :documento_formatado
9
+ has_value :link_acesso
10
+
11
+ def initialize(params)
12
+ self.id_documento = params[:id_documento]
13
+ self.documento_formatado = params[:documento_formatado]
14
+ self.link_acesso = params[:link_acesso]
15
+ initialize_attributes
16
+ end
17
+
18
+ end
19
+
20
+ end
21
+
22
+ end
@@ -0,0 +1,22 @@
1
+ module Imasei
2
+
3
+ module Estruturas
4
+
5
+ class RetornoUnidade < ::Valuable
6
+
7
+ has_value :id_unidade
8
+ has_value :sigla
9
+ has_value :descricao
10
+
11
+ def initialize(params)
12
+ self.id_unidade = params[:id_unidade]
13
+ self.sigla = params[:sigla]
14
+ self.descricao = params[:descricao]
15
+
16
+ initialize_attributes
17
+ end
18
+ end
19
+
20
+ end
21
+
22
+ end
@@ -0,0 +1,22 @@
1
+ module Imasei
2
+
3
+ module Estruturas
4
+
5
+ class RetornoUsuario < ::Valuable
6
+
7
+ has_value :idUsuario
8
+ has_value :sigla
9
+ has_value :nome
10
+
11
+ def initialize(params)
12
+ self.idUsuario = params[:id_usuario]
13
+ self.sigla = params[:sigla]
14
+ self.nome = params[:nome]
15
+ initialize_attributes
16
+ end
17
+
18
+ end
19
+
20
+ end
21
+
22
+ end
@@ -0,0 +1,32 @@
1
+ require "json"
2
+ require "nokogiri"
3
+
4
+ module Imasei
5
+
6
+ module Printer
7
+
8
+ def self.jp(json_text)
9
+ puts JSON.pretty_generate json_text
10
+ end
11
+
12
+ def self.xp(xml_text)
13
+ xsl = <<~HEREDOC
14
+ <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
15
+ <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
16
+ <xsl:strip-space elements="*"
17
+ <xsl:template match="/">
18
+ <xsl:copy-of select="."/>
19
+ </xsl:template>
20
+ </xsl:stylesheet>
21
+ HEREDOC
22
+
23
+ doc = Nokogiri::XML(xml_text)
24
+ xslt = Nokogiri::XSLT(xsl)
25
+ out = xslt.transform(doc)
26
+
27
+ puts out.to_xml
28
+ end
29
+
30
+ end
31
+
32
+ end
@@ -0,0 +1,240 @@
1
+ module Imasei
2
+
3
+ module Servico
4
+
5
+ def self.gerar_procedimento(id_unidade, procedimento, documentos = [], procedimentos_relacionados = [], unidades_envio = [], manter_aberto_unidade = 'N',
6
+ enviar_email_notificacao = 'N', data_retorno_programado = nil, dias_retorno_programado = nil, dias_uteis_retorno_programado = 'N')
7
+ message = {
8
+ SiglaSistema: Imasei.configuration.sigla,
9
+ IdentificacaoServico: Imasei.configuration.identificacao,
10
+ IdUnidade: id_unidade,
11
+ Procedimento: procedimento.to_h,
12
+ Documentos: documentos.empty? ? {} : {documento: documentos.map{|documento| documento.to_h}},
13
+ ProcedimentosRelacionados: procedimentos_relacionados.empty? ? {} : {procedimento_relacionado: procedimentos_relacionados.map{|procedimentos_relacionado| procedimentos_relacionado.to_h}},
14
+ UnidadesEnvio: unidades_envio.empty? ? {} : {unidade_envio: unidades_envio.map{|unidade_envio| unidade_envio.to_message}},
15
+ SinManterAbertoUnidade: manter_aberto_unidade,
16
+ SinEnviarEmailNotificacao: enviar_email_notificacao,
17
+ DataRetornoProgramado: data_retorno_programado,
18
+ DiasRetornoProgramado: dias_retorno_programado,
19
+ SinDiasUteisRetornoProgramado: dias_uteis_retorno_programado
20
+ }
21
+ response = Imasei::Connection.instance.call :gerar_procedimento, message: message
22
+ body = response.body[:gerar_procedimento_response][:parametros]
23
+ Imasei::Estruturas::RetornoGeracaoProcedimento.new body
24
+ end
25
+
26
+ def self.incluir_documento(id_unidade, documento)
27
+ message = {
28
+ SiglaSistema: Imasei.configuration.sigla,
29
+ IdentificacaoServico: Imasei.configuration.identificacao,
30
+ IdUnidade: id_unidade,
31
+ Documento: documento.to_h
32
+ }
33
+ response = Imasei::Connection.instance.call :incluir_documento, message: message
34
+ body = response.body[:incluir_documento_response][:parametros]
35
+ Imasei::Estruturas::RetornoInclusaoDocumento.new body
36
+ end
37
+
38
+
39
+ def self.incluir_documento_bloco(id_unidade,id_bloco,protocolo_documento)
40
+ message = {
41
+ SiglaSistema: Imasei.configuration.sigla,
42
+ IdentificacaoServico: Imasei.configuration.identificacao,
43
+ IdUnidade: id_unidade,
44
+ IdBloco: id_bloco,
45
+ ProtocoloDocumento: protocolo_documento
46
+ }
47
+
48
+ response = Imasei::Connection.instance.call :incluir_documento_bloco, message: message
49
+ body = response.body[:incluir_documento_bloco_response][:parametros]
50
+ Imasei::Estruturas::RetornoInclusaoDocumentoBloco.new body
51
+ end
52
+
53
+ def self.incluir_processo_bloco(id_unidade,id_bloco,protocolo_procedimento)
54
+ message = {
55
+ SiglaSistema: Imasei.configuration.sigla,
56
+ IdentificacaoServico: Imasei.configuration.identificacao,
57
+ IdUnidade: id_unidade,
58
+ IdBloco: id_bloco,
59
+ ProtocoloProcedimento: protocolo_procedimento
60
+ }
61
+
62
+ response = Imasei::Connection.instance.call :incluir_processo_bloco, message: message
63
+ body = response.body[:incluir_processo_bloco_response][:parametros]
64
+ Imasei::Estruturas::RetornoInclusaoProcessoBloco.new body
65
+ end
66
+
67
+ def self.concluir_processo(id_unidade,protocolo_procedimento)
68
+ message = {
69
+ SiglaSistema: Imasei.configuration.sigla,
70
+ IdentificacaoServico: Imasei.configuration.identificacao,
71
+ IdUnidade: id_unidade,
72
+ ProtocoloProcedimento: protocolo_procedimento
73
+ }
74
+
75
+ response = Imasei::Connection.instance.call :concluir_processo, message: message
76
+ body = response.body[:concluir_processo_response][:parametros]
77
+ Imasei::Estruturas::RetornoConclusaoProcesso.new body
78
+
79
+ end
80
+
81
+ def self.reabrir_processo(id_unidade,protocolo_procedimento)
82
+ message = {
83
+ SiglaSistema: Imasei.configuration.sigla,
84
+ IdentificacaoServico: Imasei.configuration.identificacao,
85
+ IdUnidade: id_unidade,
86
+ ProtocoloProcedimento: protocolo_procedimento
87
+ }
88
+
89
+ response = Imasei::Connection.instance.call :reabrir_processo, message: message
90
+ body = response.body[:reabrir_processo_response][:parametros]
91
+ Imasei::Estruturas::RetornoBoolean.new body
92
+
93
+ end
94
+
95
+ def self.retirar_processo_bloco(id_unidade,id_bloco,protocolo_procedimento)
96
+ message = {
97
+ SiglaSistema: Imasei.configuration.sigla,
98
+ IdentificacaoServico: Imasei.configuration.identificacao,
99
+ IdUnidade: id_unidade,
100
+ IdBloco: id_bloco,
101
+ ProtocoloProcedimento: protocolo_procedimento
102
+ }
103
+
104
+ response = Imasei::Connection.instance.call :retirar_processo_bloco, message: message
105
+ body = response.body[:retirar_processo_bloco_response][:parametros]
106
+ Imasei::Estruturas::RetornoBoolean.new body
107
+ end
108
+
109
+ def self.atribuir_processo(id_unidade,protocolo_procedimento,id_usuario,sin_reabrir = 'N')
110
+
111
+ message = {
112
+ SiglaSistema: Imasei.configuration.sigla,
113
+ IdentificacaoServico: Imasei.configuration.identificacao,
114
+ IdUnidade: id_unidade,
115
+ ProtocoloProcedimento: protocolo_procedimento,
116
+ IdUsuario: id_usuario,
117
+ SinReabrir: sin_reabrir
118
+
119
+ }
120
+
121
+ response = Imasei::Connection.instance.call :atribuir_processo, message: message
122
+ body = response.body[:atribuir_processo_response][:parametros]
123
+ Imasei::Estruturas::RetornoBoolean.new body
124
+ end
125
+
126
+ def self.retirar_documento_bloco(id_unidade,id_bloco,protocolo_documento)
127
+ message = {
128
+ SiglaSistema: Imasei.configuration.sigla,
129
+ IdentificacaoServico: Imasei.configuration.identificacao,
130
+ IdUnidade: id_unidade,
131
+ IdBloco: id_bloco,
132
+ ProtocoloDocumento: protocolo_documento
133
+ }
134
+
135
+ response = Imasei::Connection.instance.call :retirar_documento_bloco, message: message
136
+ body = response.body[:retirar_documento_bloco_response][:parametros]
137
+ Imasei::Estruturas::RetornoBoolean.new body
138
+ end
139
+
140
+ def self.disponibilizar_bloco(id_unidade,id_bloco)
141
+ message = {
142
+ SiglaSistema: Imasei.configuration.sigla,
143
+ IdentificacaoServico: Imasei.configuration.identificacao,
144
+ IdUnidade: id_unidade,
145
+ IdBloco: id_bloco
146
+ }
147
+
148
+ response = Imasei::Connection.instance.call :disponibilizar_bloco, message: message
149
+ body = response.body[:disponibilizar_bloco_response][:parametros]
150
+ Imasei::Estruturas::RetornoBoolean.new body
151
+ end
152
+
153
+ def self.excluir_bloco(id_unidade,id_bloco)
154
+ message = {
155
+ SiglaSistema: Imasei.configuration.sigla,
156
+ IdentificacaoServico: Imasei.configuration.identificacao,
157
+ IdUnidade: id_unidade,
158
+ IdBloco: id_bloco
159
+ }
160
+
161
+ response = Imasei::Connection.instance.call :excluir_bloco, message: message
162
+ body = response.body[:excluir_bloco_response][:parametros]
163
+ Imasei::Estruturas::RetornoBoolean.new body
164
+ end
165
+
166
+ def self.cancelar_documento(id_unidade,protocolo_documento,motivo)
167
+ message = {
168
+ SiglaSistema: Imasei.configuration.sigla,
169
+ IdentificacaoServico: Imasei.configuration.identificacao,
170
+ IdUnidade: id_unidade,
171
+ ProtocoloDocumento: protocolo_documento,
172
+ Motivo: motivo
173
+ }
174
+
175
+ response = Imasei::Connection.instance.call :cancelar_documento, message: message
176
+ body = response.body[:cancelar_documento_response][:parametros]
177
+ Imasei::Estruturas::RetornoBoolean.new body
178
+ end
179
+
180
+
181
+ def self.listar_usuarios(id_unidade,id_usuario = nil)
182
+ message = {
183
+ SiglaSistema: Imasei.configuration.sigla,
184
+ IdentificacaoServico: Imasei.configuration.identificacao,
185
+
186
+ IdUnidade: id_unidade,
187
+ IdUsuario: id_usuario
188
+ }
189
+ response = Imasei::Connection.instance.call :listar_usuarios, message: message
190
+ body = response.body[:listar_usuarios_response][:parametros]
191
+ Imasei::Estruturas::RetornoListUsuarios.new body
192
+ end
193
+
194
+ def self.consultar_procedimento(id_unidade,protocolo_procedimento,sin_retornar_assuntos = 'N',sin_retornar_interessados = 'N',sin_retornar_observacoes = 'N',sin_retornar_andamento_geracao = 'N',sin_retornar_andamento_conclusao = 'N')
195
+ message = {
196
+ SiglaSistema: Imasei.configuration.sigla,
197
+ IdentificacaoServico: Imasei.configuration.identificacao,
198
+ IdUnidade: id_unidade,
199
+ ProtocoloProcedimento: protocolo_procedimento,
200
+ SinRetornarAssuntos: sin_retornar_assuntos,
201
+ SinRetornarInteressados: sin_retornar_interessados,
202
+ SinRetornarObservacoes: sin_retornar_observacoes,
203
+ SinRetornarAndamentoGeracao: sin_retornar_andamento_geracao,
204
+ SinRetornarAndamentoConclusao: sin_retornar_andamento_conclusao
205
+ }
206
+ response = Imasei::Connection.instance.call :consultar_procedimento, message: message
207
+ body = response.body[:consultar_procedimento_response][:parametros]
208
+ Imasei::Estruturas::RetornoConsultarProcedimento.new body
209
+ end
210
+
211
+ def self.listar_unidades(id_tipo_procedimento = nil,id_serie = nil)
212
+ message = {
213
+ SiglaSistema: Imasei.configuration.sigla,
214
+ IdentificacaoServico: Imasei.configuration.identificacao,
215
+ IdTipoProcedimento: id_tipo_procedimento,
216
+ IdSerie: id_serie
217
+ }
218
+ response = Imasei::Connection.instance.call :listar_unidades, message: message
219
+ body = response.body[:listar_unidades_response][:parametros]
220
+ Imasei::Estruturas::RetornoListUnidades.new body
221
+ end
222
+
223
+ def self.gerar_bloco(id_unidade, tipo, descricao,unidades_disponibilizacao = [], documentos = [], sin_disponibilizar = 'N')
224
+ message = {
225
+ SiglaSistema: Imasei.configuration.sigla,
226
+ IdentificacaoServico: Imasei.configuration.identificacao,
227
+ IdUnidade: id_unidade,
228
+ Tipo: tipo,
229
+ Descricao: descricao,
230
+ UnidadesDisponibilizacao: unidades_disponibilizacao,
231
+ SinDisponibilizar: sin_disponibilizar
232
+ }
233
+ response = Imasei::Connection.instance.call :gerar_bloco, message: message
234
+
235
+ body = response.body[:gerar_bloco_response][:parametros]
236
+ Imasei::Estruturas::RetornoGeracaoBloco.new body
237
+ end
238
+ end
239
+
240
+ end
@@ -0,0 +1,3 @@
1
+ module Imasei
2
+ VERSION = "0.1.6"
3
+ end
data/lib/imasei.rb ADDED
@@ -0,0 +1,39 @@
1
+ require 'date'
2
+ require 'base64'
3
+ require 'savon'
4
+ require 'valuable'
5
+ require 'gem_config'
6
+
7
+ require 'imasei/connection'
8
+ require 'imasei/printer'
9
+ require 'imasei/servico'
10
+ require 'imasei/version'
11
+
12
+ require 'imasei/estruturas/documento'
13
+ require 'imasei/estruturas/procedimento'
14
+ require 'imasei/estruturas/retorno_inclusao_documento'
15
+ require 'imasei/estruturas/retorno_geracao_procedimento'
16
+ require 'imasei/estruturas/retorno_unidade'
17
+ require 'imasei/estruturas/retorno_list_unidades'
18
+ require 'imasei/estruturas/retorno_geracao_bloco'
19
+ require 'imasei/estruturas/retorno_inclusao_documento_bloco'
20
+ require 'imasei/estruturas/retorno_inclusao_processo_bloco'
21
+ require 'imasei/estruturas/retorno_conclusao_processo'
22
+ require 'imasei/estruturas/retorno_boolean'
23
+ require 'imasei/estruturas/retorno_usuario'
24
+ require 'imasei/estruturas/retorno_list_usuarios'
25
+ require 'imasei/estruturas/retorno_consultar_procedimento'
26
+
27
+ module Imasei
28
+
29
+ include GemConfig::Base
30
+
31
+ with_configuration do
32
+ has :wsdl, classes: String
33
+ has :follow_redirects
34
+ has :pretty_print_xml
35
+ has :sigla, classes: String
36
+ has :identificacao, classes: String
37
+ end
38
+
39
+ end
metadata ADDED
@@ -0,0 +1,162 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: imasei
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.6
5
+ platform: ruby
6
+ authors:
7
+ - Alexandre Soares feat Leandro Telles
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-04-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.13'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.13'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: gem_config
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: savon
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: valuable
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Expõe, através de métodos ruby, as funcionalidades da API do SEI.
98
+ email:
99
+ - alexandre.soares@ima.sp.gov.br
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - ".ruby-gemset"
106
+ - ".ruby-version"
107
+ - ".travis.yml"
108
+ - CODE_OF_CONDUCT.md
109
+ - Gemfile
110
+ - LICENSE.txt
111
+ - README.md
112
+ - Rakefile
113
+ - bin/console
114
+ - bin/setup
115
+ - imasei.gemspec
116
+ - lib/imasei.rb
117
+ - lib/imasei/connection.rb
118
+ - lib/imasei/estruturas/documento.rb
119
+ - lib/imasei/estruturas/documento_bloco.rb
120
+ - lib/imasei/estruturas/procedimento.rb
121
+ - lib/imasei/estruturas/retorno_boolean.rb
122
+ - lib/imasei/estruturas/retorno_conclusao_processo.rb
123
+ - lib/imasei/estruturas/retorno_consultar_procedimento.rb
124
+ - lib/imasei/estruturas/retorno_geracao_bloco.rb
125
+ - lib/imasei/estruturas/retorno_geracao_procedimento.rb
126
+ - lib/imasei/estruturas/retorno_inclusao_documento.rb
127
+ - lib/imasei/estruturas/retorno_inclusao_documento_bloco.rb
128
+ - lib/imasei/estruturas/retorno_inclusao_processo_bloco.rb
129
+ - lib/imasei/estruturas/retorno_list_unidades.rb
130
+ - lib/imasei/estruturas/retorno_list_usuarios.rb
131
+ - lib/imasei/estruturas/retorno_observacoes.rb
132
+ - lib/imasei/estruturas/retorno_unidade.rb
133
+ - lib/imasei/estruturas/retorno_usuario.rb
134
+ - lib/imasei/printer.rb
135
+ - lib/imasei/servico.rb
136
+ - lib/imasei/version.rb
137
+ homepage: https://github.com
138
+ licenses:
139
+ - MIT
140
+ metadata:
141
+ allowed_push_host: https://rubygems.org
142
+ post_install_message:
143
+ rdoc_options: []
144
+ require_paths:
145
+ - lib
146
+ required_ruby_version: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ">="
149
+ - !ruby/object:Gem::Version
150
+ version: '0'
151
+ required_rubygems_version: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ version: '0'
156
+ requirements: []
157
+ rubyforge_project:
158
+ rubygems_version: 2.6.10
159
+ signing_key:
160
+ specification_version: 4
161
+ summary: Integração com a API do SEI.
162
+ test_files: []