notasegura 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/notasegura.rb +12 -9
- metadata +2 -2
data/lib/notasegura.rb
CHANGED
@@ -21,7 +21,7 @@ class NotaSegura
|
|
21
21
|
raise ArgumentError, 'Senha inválida'
|
22
22
|
end
|
23
23
|
|
24
|
-
@url = 'https://app.notasegura.com.br
|
24
|
+
@url = 'https://app.notasegura.com.br'
|
25
25
|
@email = email
|
26
26
|
@senha = senha
|
27
27
|
end
|
@@ -37,14 +37,10 @@ class NotaSegura
|
|
37
37
|
checar_xml!
|
38
38
|
|
39
39
|
begin
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
:user => @email,
|
45
|
-
:password => @senha
|
46
|
-
)
|
47
|
-
resposta = requisicao.execute
|
40
|
+
url = "#{@url}/api/invoices"
|
41
|
+
url = "#{url}?token=#{@token}" if @token
|
42
|
+
requisicao = RestClient::Resource.new(url, @email, @senha)
|
43
|
+
resposta = requisicao.post(:xml => @xml)
|
48
44
|
resultado = XmlSimple.xml_in resposta
|
49
45
|
return resultado
|
50
46
|
rescue => e
|
@@ -56,6 +52,13 @@ class NotaSegura
|
|
56
52
|
end
|
57
53
|
end
|
58
54
|
|
55
|
+
def consultar_nota(chave)
|
56
|
+
url = "#{@url}/api/invoices/key/#{chave}"
|
57
|
+
resposta = RestClient::Resource.new(url, @email, @senha).get
|
58
|
+
resultado = XmlSimple.xml_in resposta
|
59
|
+
return resultado
|
60
|
+
end
|
61
|
+
|
59
62
|
private
|
60
63
|
|
61
64
|
def ler_xml!
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: notasegura
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-05-30 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Integração com notasegura.com.br
|
15
15
|
email:
|