bill_forward 2.2016.209 → 2.2016.222
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 +4 -4
- data/README.md +3 -1
- data/lib/bill_forward/mutable_entity.rb +2 -2
- data/lib/bill_forward/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a8fc7dcb7c21f019ff6d0f7fceff395a3a3f09b0
|
|
4
|
+
data.tar.gz: 12c47086f5946a416d2318d4ff799cdc405c6aa3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc558a9a19924c76917228365c730f1750251bd1b6e8c910f2749b1f0ee3c531a6595560113f7e2868b88e2ed3bcb557421cab9feb65215738fa8c49017dfac6
|
|
7
|
+
data.tar.gz: 4391b4ef3996f5eebf0e1730f09b5bc82655f557e3218907b3b07b26533dddef2a9ee5ab751a7064f24d215ef8cba14fdc07bd224e5592dc3f22ef08ce0c57b5
|
data/README.md
CHANGED
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
This client library provides (via Ruby) easy access to the BillForward API.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Compatibility
|
|
6
6
|
|
|
7
7
|
Until [commit 1ca55](https://github.com/billforward/bf-ruby/tree/1ca55ca8d361130c935df68e3b6496611221938a), [version 1.2016.117](https://rubygems.org/gems/bill_forward/versions/1.2016.117), the SDK targeted Ruby 1.8.7.
|
|
8
8
|
|
|
9
|
+
As of [version 2.2016.209](https://rubygems.org/gems/bill_forward/versions/2.2016.209): the SDK targets Ruby 2.3.1. There is a possibility that it is still compatible with Rubies as old as 1.9.3.
|
|
10
|
+
|
|
9
11
|
## Installation
|
|
10
12
|
### From Git
|
|
11
13
|
|
|
@@ -18,8 +18,8 @@ module BillForward
|
|
|
18
18
|
# @note As-yet untested
|
|
19
19
|
#
|
|
20
20
|
# @return [self] The retired Entity
|
|
21
|
-
def delete
|
|
22
|
-
self.class.request_first('delete', ERB::Util.url_encode(id),
|
|
21
|
+
def delete(query_params = {})
|
|
22
|
+
self.class.request_first('delete', ERB::Util.url_encode(id), query_params, nil, _client)
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
alias_method :retire, :delete
|
data/lib/bill_forward/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bill_forward
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2016.
|
|
4
|
+
version: 2.2016.222
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- BillForward
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-08-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|