clicksign 0.2.1 → 0.2.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: f85bdff9a54a4501f4cca07252c8b6ebe64d8c51
4
- data.tar.gz: 96b4ed18bfcb417bf601d5feb960001584ecebc2
3
+ metadata.gz: 9f6bf8e60ca8cfd58037a60637648b616b18b391
4
+ data.tar.gz: 0987142fb54d104aaf4d3370fb544ba22c366c08
5
5
  SHA512:
6
- metadata.gz: 64c4b49aac2bb3078ec9efc444878a25f5252b569eb52c7e7a00e1508c6fbea714e1274118a337468948b19a291dc723e3b73aa28f68b7e808f42ad9549af07c
7
- data.tar.gz: 8e306daf6340b697d78f49177b370b910c01284992f29fe82a627d014cbcd9e00314b392f35423299e89f8007ea253e44404b0998bac91b6be354c898bcaf42d
6
+ metadata.gz: c6773258991cfd003861edd61297ecec26639ab9766b8d1996d9707117f1e1d65750b675e9172556c82c10004846e3b9bef0f85ea6fbd7a506837f678338f20c
7
+ data.tar.gz: 42765b0449ce67c8e0319386338894b533c1e45a310c921bf756e7917cb66293b09a9229989155e58658daa80e9db1fa686d5796197ed5f23a52aec6f2d92bdc
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Clicksign Ruby Client
2
2
 
3
- Official gem to comunicate with the **[Clicksign REST API](http://clicksign.github.io/rest-api/)**.
3
+ Official gem to comunicate with the **[Clicksign REST API](http://clicksign.readme.io/)**.
4
4
 
5
5
  ## Installation
6
6
 
@@ -14,7 +14,7 @@ module Clicksign
14
14
 
15
15
  def self.create(file, params = {})
16
16
  signers = params.delete(:signers)
17
- params['signers[]'] = [signers].flatten(1) if signers
17
+ params['signers'] = [signers].flatten(1) if signers
18
18
 
19
19
  request :post,
20
20
  api_url('documents'),
@@ -1,3 +1,3 @@
1
1
  module Clicksign
2
- VERSION = '0.2.1'
2
+ VERSION = '0.2.2'
3
3
  end
@@ -43,7 +43,7 @@ describe Clicksign::Document do
43
43
  'document[archive][original]' => file,
44
44
  message: message,
45
45
  skip_email: skip_email,
46
- 'signers[]' => [signers],
46
+ 'signers' => [signers],
47
47
  }, { accept: 'json' }).and_return({})
48
48
 
49
49
  Clicksign::Document.create(file, {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clicksign
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clicksign
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-15 00:00:00.000000000 Z
11
+ date: 2016-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client