billimatic-client 0.17.0 → 0.18.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 273c87649ed1394f123501e60a78a809ae701568
4
- data.tar.gz: e2a2400590bf74074baaf6a0f1cce5aed6f791e9
3
+ metadata.gz: 0d3e6feec43bcf51a1dac4cfea6ca90cd2309ce9
4
+ data.tar.gz: c4d4c203950e97c71ce69ddb9e231bd29531ac7f
5
5
  SHA512:
6
- metadata.gz: 120c58c071036a09fccaaf0b8c359e4b569b2025f4b0d363a9520299182b57b08d9ae1aedd6dd0b1e0566615c08afc9405125ae273f1ae33e97725d98d554690
7
- data.tar.gz: 437eaeb96aeed33a026ea2d3119711291adf68684f85c0b18b63e40d1a365fe115081b599460b675de430a0012ae6d5607659c3e901cf821f8d1dd087476ded9
6
+ metadata.gz: 120913ece8e9d923daae9c34706574e9e71b64a2e8a61c8e267b047873392ad3f1c6ed2e1360416f7e0a823b4ee847682d7ddcc2508b22689b32dc257c66d5ee
7
+ data.tar.gz: e7fa5f9718e48213c1fcb2c6b9aeb63ce1ccdf59f53e01a459bb21e1ebfa79562f2b763046eb66237e8e49dd69feb4235c9e33fb06c8351debc0aeb8f340c17a
data/CHANGELOG.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  ## Next version
4
4
 
5
+ ## v0.18.0
6
+ - Adds Person#show endpoint.
7
+
5
8
  ## v0.17.0
6
9
  - Adds InvoiceRule#list and InvoiceRule#destroy endpoints.
7
10
  - Adds `contract_id` field on InvoiceRule entity.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- billimatic-client (0.17.0)
4
+ billimatic-client (0.18.0)
5
5
  multi_json (~> 1.11)
6
6
  typhoeus (~> 0.8)
7
7
  virtus (~> 1.0.5)
data/README.md CHANGED
@@ -548,6 +548,17 @@ client = Billimatic.client("YOUR_TOKEN_HERE")
548
548
  <th>Endpoint</th>
549
549
  <th>Client method</th>
550
550
  </tr>
551
+ <tr>
552
+ <td><code>GET</code></td>
553
+ <td>
554
+ <a href="https://app.billimatic.com.br/docs/api#!/people/API_V1_People_show_get_2" target="_blank">
555
+ /api/v1/people/:id
556
+ </a>
557
+ </td>
558
+ <td>
559
+ <code>client.people.show(id)</code>
560
+ </td>
561
+ </tr>
551
562
  <tr>
552
563
  <td><code>GET</code></td>
553
564
  <td>
@@ -6,8 +6,8 @@ require 'billimatic/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'billimatic-client'
8
8
  spec.version = Billimatic::VERSION
9
- spec.authors = ['Rodrigo Tassinari de Oliveira', 'Leandro Thimóteo', 'Victor Franco', 'Anderson Ferreira']
10
- spec.email = ['rodrigo@pittlandia.net', 'leandro.s.thimoteo@gmail.com', 'victor.alexandrefs@gmail.com', 'andyferreira92@gmail.com']
9
+ spec.authors = ['Rodrigo Tassinari de Oliveira', 'Leandro Thimóteo', 'Victor Franco', 'Anderson Ferreira', 'Raul Fernando']
10
+ spec.email = ['rodrigo@pittlandia.net', 'leandro.s.thimoteo@gmail.com', 'victor.alexandrefs@gmail.com', 'andyferreira92@gmail.com', 'raulfernando08@gmail.com']
11
11
 
12
12
  spec.summary = %q{This is the official Ruby client for the Billimatic API.}
13
13
  spec.description = %q{This is the official Ruby client for the Billimatic API. See http://www.billimatic.com.br for more information.}
@@ -1,7 +1,7 @@
1
1
  module Billimatic
2
2
  module Resources
3
3
  class Person < Base
4
- crud :create, :update, :destroy
4
+ crud :show, :create, :update, :destroy
5
5
 
6
6
  def initialize(http)
7
7
  @collection_name = 'people'
@@ -1,3 +1,3 @@
1
1
  module Billimatic
2
- VERSION = '0.17.0'
2
+ VERSION = '0.18.0'
3
3
  end
metadata CHANGED
@@ -1,17 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: billimatic-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rodrigo Tassinari de Oliveira
8
8
  - Leandro Thimóteo
9
9
  - Victor Franco
10
10
  - Anderson Ferreira
11
+ - Raul Fernando
11
12
  autorequire:
12
13
  bindir: exe
13
14
  cert_chain: []
14
- date: 2018-06-14 00:00:00.000000000 Z
15
+ date: 2018-06-19 00:00:00.000000000 Z
15
16
  dependencies:
16
17
  - !ruby/object:Gem::Dependency
17
18
  name: typhoeus
@@ -202,6 +203,7 @@ email:
202
203
  - leandro.s.thimoteo@gmail.com
203
204
  - victor.alexandrefs@gmail.com
204
205
  - andyferreira92@gmail.com
206
+ - raulfernando08@gmail.com
205
207
  executables: []
206
208
  extensions: []
207
209
  extra_rdoc_files: []