provide-ruby 0.56.0 → 0.57.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 +4 -4
- data/lib/provide-ruby/services/bookie.rb +16 -0
- data/lib/provide-ruby/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: e3339ae8e7cc7f45a0c57c9403673b5f82d33744
|
|
4
|
+
data.tar.gz: 42db1b3a2731aac1a7541e3e209cd1a484f1b11c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d71b108ce271be9ea2e7fdb501ce19424bc8b8c83557171c5028f26d83e9805de7a98a1f9e2b33d16a650ed41bb417066a4f886d64bb56a8093333c79fc5caed
|
|
7
|
+
data.tar.gz: 57105476979bcba633f598bb3ddc5d07b4e567a309aa0ac17ed87cae51a6e434557ffc1fa01d8047bce3077392832742c0a4d4042823459ceada4d7c681e7ecc
|
|
@@ -8,6 +8,22 @@ module Provide
|
|
|
8
8
|
@token = token
|
|
9
9
|
end
|
|
10
10
|
|
|
11
|
+
def billing_accounts(params = nil)
|
|
12
|
+
parse client.get 'billing_accounts', (params || {})
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def billing_account_details(billing_account_id)
|
|
16
|
+
parse client.get "billing_accounts/#{billing_account_id}"
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def create_billing_account(params)
|
|
20
|
+
parse client.post 'billing_accounts', params
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def update_billing_account(billing_account_id, params)
|
|
24
|
+
parse client.put "billing_accounts/#{billing_account_id}", params
|
|
25
|
+
end
|
|
26
|
+
|
|
11
27
|
def connect(params = nil)
|
|
12
28
|
parse client.get 'connect', (params || {})
|
|
13
29
|
end
|
data/lib/provide-ruby/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: provide-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.57.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Thomas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-06-
|
|
11
|
+
date: 2019-06-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|