get_accept 0.1.1 → 0.1.2

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: 6eb2957d1ad4aa0640802c2a6ac613b58f1cc1c7
4
- data.tar.gz: ee01aa5c97b1d6132794b86a5319adbda0f73ffd
3
+ metadata.gz: 5b3050a418b31ee396da7110c4f1ab33abc751f7
4
+ data.tar.gz: f0e472dc25812db5156c0b190122135be221c6d7
5
5
  SHA512:
6
- metadata.gz: 6cbbcc51828dea366f66ac2ef711e007b95e35cb49f6e3ff87c55da30ebbc6dcd2ca34c2e0007783c5bad8b535e30ba6c694ea991d36df0837071ce315c35007
7
- data.tar.gz: be4825ba2ddecc6d4913f639625f526a475eea145f38287779e7708ed07047e476c9d4c5b92a0f31a67de147e4f5ad23a681b30bd51794e5e21bf7f27e8b8c68
6
+ metadata.gz: b24169958d81f400c665a0118f9937aee150dbee5d8118c713178a1dff4f88d0de06ff106781171df9055e81c53c6decf9fc4262dc5d608cd3a159197f5752ec
7
+ data.tar.gz: d2da5d3847e77ad9cf9109945b0fb8b413b0fd55acc584445a7ef37a4f47cf930cd57be20887dd04139c0e59ff7c87f23da30c7d3cff956f768399495e486b9d
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # GetAccept
1
+ # GetAccept [![Gem Version](https://badge.fury.io/rb/get_accept.svg)](https://badge.fury.io/rb/get_accept)
2
2
 
3
3
  GetAccept is Ruby wrapper around the API for the GetAccept eSignature service. Documentation for request and response data can be found at https://app.getaccept.com/api/
4
4
 
@@ -31,7 +31,8 @@ Get an API token
31
31
  entity_id: 'asjklf' # Optional. Your GetAccept customer id. Useful if ou belong to multiple organizations using GetAccept.
32
32
  })
33
33
 
34
- #=> {
34
+ #=>
35
+ {
35
36
  "access_token": "ACCESS_TOKEN", # JWT
36
37
  "expires_in": 1209600 # 2 weeks in seconds
37
38
  }
Binary file
Binary file
@@ -1,5 +1,9 @@
1
1
  module GetAccept
2
2
  class Subscription < Resource
3
+ def all
4
+ get('/subscriptions')
5
+ end
6
+
3
7
  def create options = {}
4
8
  post('/subscriptions', options)
5
9
  end
@@ -1,3 +1,3 @@
1
1
  module GetAccept
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: get_accept
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Nelson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-03-13 00:00:00.000000000 Z
11
+ date: 2017-03-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -153,6 +153,8 @@ files:
153
153
  - Rakefile
154
154
  - bin/console
155
155
  - bin/setup
156
+ - get_accept-0.1.0.gem
157
+ - get_accept-0.1.1.gem
156
158
  - get_accept.gemspec
157
159
  - lib/get_accept.rb
158
160
  - lib/get_accept/api.rb