eba 1.0.1.3 → 1.0.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 45431e76223640963ba2dba5752cde41f4a70f41
4
- data.tar.gz: 8d61821755d8cf8fcac5beea06446747316fd8f9
3
+ metadata.gz: c3cc4b38dcc1309fddf405fc467605d8a5fbad72
4
+ data.tar.gz: 50ecdaefb89d5799a4c2f604016fcbe238361f33
5
5
  SHA512:
6
- metadata.gz: a3ab2e5e7175f39d50807479046c229202407e54ddfa4a42a206c5fa355bb48c8615ab82e129bef587fedadc0b80d73b1f563a38912ac18f83cd83848477d82f
7
- data.tar.gz: 402358636d8448c9e8b024b2e60d2351d70272fe40f7ad3faff256fc04480f55d028a5ed91dd4fb78c0c7629f43e5651d5f2a1c41c8947cf7c1584026aeeb7d5
6
+ metadata.gz: eef17380a0b997937472409619111bef0da85f529ec1cc37d7040bbe54b91b03e4d9b0d6c9759d1b3983456997f10abc53d5738f0c3d578c70d22c94037bc75e
7
+ data.tar.gz: a82a757016801e0129989f28cd0523d1132f257c48439db6cc1610e026e631ff00cc5db650c9106a1307791fae204ae9f0420efcb57d45317bc97bf7e2a1b520
data/eba.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["rcampos@tendencias.com.br"]
11
11
 
12
12
  spec.summary = %q{Class which serves as interface with Brazillian Central Bank databases through the Webservice SGS - Sistema Gerenciador de Séries Temporais - v2.1. eba stands for Easy BCB Access and is also an expression of joy in Brazillian Portuguese.<br>}
13
- spec.description = %q{This class was developed in a partinership with Tendencias - Consultoria Econômica, a economical analysis company from Brazil. The intent is, given that you know one or more primary keys for series inside the BCB database, you can extract updates or the full historical data of said series.\nEba stands for Easy BCB Access and is also an expression of joy in Brazillian Portuguese.}
13
+ spec.description = %q{This class was developed in a partinership with Tendencias - Consultoria Econômica, a economical analysis company from Brazil. The intent is, given that you know one or more primary keys for series inside the BCB database, you can extract updates or the full historical data of said series.<br>Eba stands for Easy BCB Access and is also an expression of joy in Brazillian Portuguese.<br>}
14
14
  spec.homepage = "https://github.com/rCamposCruz/eba"
15
15
  spec.license = "MIT"
16
16
 
data/lib/eba/bcb.rb CHANGED
@@ -31,8 +31,11 @@ class BCB < Encoder
31
31
  end
32
32
 
33
33
  def connect_to_service()
34
- @service = Savon.client(wsdl: "https://www3.bcb.gov.br/sgspub/JSP/sgsgeral/FachadaWSSGS.wsdl",
35
- ssl_cert_file: @pub_key)
34
+
35
+
36
+ @service = Savon.client({wsdl: "https://www3.bcb.gov.br/sgspub/JSP/sgsgeral/FachadaWSSGS.wsdl",
37
+ ssl_cert_file: @pub_key,
38
+ headers: {'Accept-Encoding' => 'gzip, deflate'}})
36
39
  end
37
40
 
38
41
  # List of all operations available for the webservice,
data/lib/eba/version.rb CHANGED
@@ -6,7 +6,7 @@ module Eba
6
6
  # ff - commits on feature
7
7
  # hh - commits on hotfix
8
8
 
9
- VERSION = "1.0.1.3"
9
+ VERSION = "1.0.2.3"
10
10
 
11
11
  #Version 1.0.0.1
12
12
  #
@@ -28,4 +28,7 @@ module Eba
28
28
  # Removed the removal of '.' character from value, it was actually losing data.
29
29
  # Changed DataBCB class name to Data_bcb, to keep with the standard snake case.
30
30
  # updated spec tests accordingly.
31
+
32
+ #Version 1.0.2.3
33
+ # Added HTTP compression to Savon requests.
31
34
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eba
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1.3
4
+ version: 1.0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafael Campos Cruz
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-12-06 00:00:00.000000000 Z
11
+ date: 2016-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -97,8 +97,8 @@ dependencies:
97
97
  description: This class was developed in a partinership with Tendencias - Consultoria
98
98
  Econômica, a economical analysis company from Brazil. The intent is, given that
99
99
  you know one or more primary keys for series inside the BCB database, you can extract
100
- updates or the full historical data of said series.\nEba stands for Easy BCB Access
101
- and is also an expression of joy in Brazillian Portuguese.
100
+ updates or the full historical data of said series.<br>Eba stands for Easy BCB Access
101
+ and is also an expression of joy in Brazillian Portuguese.<br>
102
102
  email:
103
103
  - rcampos@tendencias.com.br
104
104
  executables: []