docusign_rest 0.3.6 → 0.3.7

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: 80b5cee131865c6529d98f42b9cbe3bc3cf66c79
4
- data.tar.gz: 0250b6f1d66f8ec783146ed47e592d12242286e8
3
+ metadata.gz: fbcee0715889150b83a5a45a562c2cab5c16965f
4
+ data.tar.gz: f1d01b1d7c255b0e3364af9b756a80b0040860b3
5
5
  SHA512:
6
- metadata.gz: 97e4449e5b12a008b5bf363f44d26e49aebd19ae50886364e320551a04cf30b22f821c46af720b62149eac179562c335b479a0fb8aabe34acb56eaccf6377bc5
7
- data.tar.gz: bd695d6d4be8b538529f11d40025c9af71ec16dab22cad12ea6ba4eb6606620c10ffe8a56c007a48cb765f1467e24028a4225af00528134fc545660c4a0b89bf
6
+ metadata.gz: b9af7ab9d9ebaa10b45fe17ecccb7617c6564bab89d3aec5d00c0c7d8ff6209964b2554ae586688802768d7ffa836d7d220dea60f47218f938fbc7294ff26de4
7
+ data.tar.gz: fa2d18bef7a25da9e8533a3d7a261802eac29ff501c932be9d0a4258221ffad9959bbb59edb908cf4e1609d5da4a37eff444110c233c804e8ace1ebae871cda7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.7 Mar 13 2018
4
+ * Fix mispeling in parameter to create_envelope_from_document (Micah Iriye)
5
+
3
6
  ## v0.3.6 Jan 31 2018
4
7
 
5
8
  * Add support for radio button groups in DocusignRest::Client#create_envelope_from_composite_template (Tom Copeland)
@@ -749,7 +749,7 @@ module DocusignRest
749
749
  # Each contains an array of corresponding customField hashes.
750
750
  # For details, please see: http://bit.ly/1FnmRJx
751
751
  # headers - Allows a client to pass in some headers
752
- # web_sign - (Optional) If true, the signer is allowed to print the
752
+ # wet_sign - (Optional) If true, the signer is allowed to print the
753
753
  # document and sign it on paper. False if not defined.
754
754
  #
755
755
  # Returns a JSON parsed response object containing:
@@ -779,7 +779,7 @@ module DocusignRest
779
779
  status: "#{options[:status]}",
780
780
  customFields: options[:custom_fields]
781
781
  }
782
- post_hash[:enableWetSign] = options[:wet_sign] if options.has_key? :web_sign
782
+ post_hash[:enableWetSign] = options[:wet_sign] if options.has_key? :wet_sign
783
783
  post_body = post_hash.to_json
784
784
 
785
785
  uri = build_uri("/accounts/#{acct_id}/envelopes")
@@ -1,3 +1,3 @@
1
1
  module DocusignRest
2
- VERSION = "0.3.6"
2
+ VERSION = "0.3.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: docusign_rest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Kinney
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-01-31 00:00:00.000000000 Z
12
+ date: 2018-03-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: multipart-post