octobat 2.0.2 → 2.0.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: b901b28abc3fd717398889135ab67359914d444d
4
- data.tar.gz: 555b8eb18d96821f7d3e995c14d92adf55631be0
3
+ metadata.gz: 5d461ed3dbe7d31080d96fad8935f59a0f40bb53
4
+ data.tar.gz: e108ef50406aed9515710901e6141e83f5e3519f
5
5
  SHA512:
6
- metadata.gz: c343611541925c6ac847ec1935019e14524c885969fdedb67e67bd24a042af04d7b9eb991949cc82d79cc12401b4188b5fe5012abee104c01d15a2537bbeeaca
7
- data.tar.gz: dcf1bacad2163dc772bd8af5b0b5989ea3ea42384755b4736b7e83e3d6a45e360c771c991476f04ebfcb94dffe82c61e9eec3bc21278bda3354481e82a7030ec
6
+ metadata.gz: 89a1f2482e1b670ef5a3eee824cbcab0115a7d88cfd1498dcf0283d3c0f487219c8e548297575fd096687e1823b64e650a90a6d92690b79af753f510e4de8d91
7
+ data.tar.gz: 9429b4126252cb78ac0865a085d2b52539bc26119404afa686c8a5f4dd236dd4b4a3045dc034cfad06736043e919c1159514f259d6f02e1740f4aab7698a1e55
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- octobat (2.0.2)
4
+ octobat (2.0.3)
5
5
  rest-client (>= 1.4, < 4.0)
6
6
 
7
7
  GEM
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 2.0.3 2017-04-12
2
+ * 1 minor enhancement:
3
+ * Delete customers
4
+
1
5
  === 2.0.1 2017-02-13
2
6
  * 1 minor enhancement:
3
7
  * Add confirmation date as an option for invoices & credit notes
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.2
1
+ 2.0.3
@@ -3,6 +3,7 @@ module Octobat
3
3
  extend Octobat::APIOperations::List
4
4
  include Octobat::APIOperations::Create
5
5
  include Octobat::APIOperations::Update
6
+ include Octobat::APIOperations::Delete
6
7
 
7
8
  def invoices(params = {})
8
9
  Invoice.all(params.merge({ :customer => id }), @api_key)
@@ -15,6 +16,5 @@ module Octobat
15
16
  def payment_sources(params = {})
16
17
  PaymentSource.all(params.merge({ :customer => id }), @api_key)
17
18
  end
18
-
19
19
  end
20
20
  end
@@ -1,3 +1,3 @@
1
1
  module Octobat
2
- VERSION = '2.0.2'
2
+ VERSION = '2.0.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octobat
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gaultier Laperche
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-24 00:00:00.000000000 Z
11
+ date: 2017-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client