billimatic-client 0.18.0 → 0.18.1

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: 0d3e6feec43bcf51a1dac4cfea6ca90cd2309ce9
4
- data.tar.gz: c4d4c203950e97c71ce69ddb9e231bd29531ac7f
3
+ metadata.gz: bbb76aef7b4a418bd9ee84bdf5d976aae8a978a8
4
+ data.tar.gz: 11f1f178421db041797923e77422331285356acf
5
5
  SHA512:
6
- metadata.gz: 120913ece8e9d923daae9c34706574e9e71b64a2e8a61c8e267b047873392ad3f1c6ed2e1360416f7e0a823b4ee847682d7ddcc2508b22689b32dc257c66d5ee
7
- data.tar.gz: e7fa5f9718e48213c1fcb2c6b9aeb63ce1ccdf59f53e01a459bb21e1ebfa79562f2b763046eb66237e8e49dd69feb4235c9e33fb06c8351debc0aeb8f340c17a
6
+ metadata.gz: 3457425a999457b1883016b159f842e784c538d50753b0fe140cfb482019ed563510bf98b789fae36cfae7851328200faf8fb4be0e58a05c1dd1907f7a4c2a05
7
+ data.tar.gz: b488f62711b2a6afc1ee5f978bc37c821f500d17901694df87ed85a828786587c2382b08f1463b358e91bb79f27dbe085807ca384d060f34b46f6251a77b49c5
data/CHANGELOG.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  ## Next version
4
4
 
5
+ ## v0.18.1
6
+ - Adds `company_name`, `address`, `number`, `complement`, `zipcode`, `district`, `city` and `state` attributes on Organization entity.
7
+
5
8
  ## v0.18.0
6
9
  - Adds Person#show endpoint.
7
10
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- billimatic-client (0.18.0)
4
+ billimatic-client (0.18.1)
5
5
  multi_json (~> 1.11)
6
6
  typhoeus (~> 0.8)
7
7
  virtus (~> 1.0.5)
@@ -25,7 +25,7 @@ GEM
25
25
  diff-lcs (1.2.5)
26
26
  docile (1.1.5)
27
27
  equalizer (0.0.11)
28
- ethon (0.10.1)
28
+ ethon (0.11.0)
29
29
  ffi (>= 1.3.0)
30
30
  ffi (1.9.14)
31
31
  formatador (0.2.5)
@@ -51,7 +51,7 @@ GEM
51
51
  ruby_dep (~> 1.2)
52
52
  lumberjack (1.0.10)
53
53
  method_source (0.8.2)
54
- multi_json (1.12.1)
54
+ multi_json (1.13.1)
55
55
  nenv (0.3.0)
56
56
  notiffany (0.1.0)
57
57
  nenv (~> 0.1)
@@ -119,4 +119,4 @@ DEPENDENCIES
119
119
  vcr (~> 3.0)
120
120
 
121
121
  BUNDLED WITH
122
- 1.15.1
122
+ 1.16.2
@@ -4,7 +4,15 @@ module Billimatic
4
4
  attribute :id, Integer
5
5
  attribute :account_id, Integer
6
6
  attribute :name, String
7
+ attribute :company_name, String
7
8
  attribute :cnpj, String
9
+ attribute :address, String
10
+ attribute :number, String
11
+ attribute :complement, String
12
+ attribute :zipcode, String
13
+ attribute :district, String
14
+ attribute :city, String
15
+ attribute :state, String
8
16
  attribute :created_at, DateTime
9
17
  end
10
18
  end
@@ -1,3 +1,3 @@
1
1
  module Billimatic
2
- VERSION = '0.18.0'
2
+ VERSION = '0.18.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: billimatic-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.18.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rodrigo Tassinari de Oliveira
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: exe
14
14
  cert_chain: []
15
- date: 2018-06-19 00:00:00.000000000 Z
15
+ date: 2018-08-14 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: typhoeus