hellosign-ruby-sdk 3.2.9 → 3.2.10

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: 460b7235efe34095a98aa16fbf1b78364015fca7
4
- data.tar.gz: c53ec9382a3de44689c407eb6a4e6978f67daf06
3
+ metadata.gz: 036c8e71962880a608236bcbc2aba745b50e51c4
4
+ data.tar.gz: c6a2b6477e51a4903dfe2ac3ce023f1ff87434d9
5
5
  SHA512:
6
- metadata.gz: e6165b989d89664737a9b2517173aefa61268ae6fec57f6a0fedef83be3f7adefd86c7e1e807345d499013649dd8efe797b9e8a58e7f4d1306e9c3b3a611ad95
7
- data.tar.gz: a712f89962e3640b84643368cfccee19134ee07debc4a23720dcb69aa2b895eb1788cbe21821f33459f796a602e4c58d1cd15511dff0858e6299bfec6f9ca6d6
6
+ metadata.gz: 0ac98f37624621979c2266ea72e813f40a2299149052c87908aeac472577cd90ffece97300ff6d4d595fba470a17b2a3d9dfad7bc43a2aa2878d7cc23065763a
7
+ data.tar.gz: a929adb5dff1d82391a1755cabf4443438e3b55bcb2e3a8eb361deafd84ad1688503ade5b30498eece73a7ea18c15c568c3f5679ac8077a9a8fe5fa76e3452de
data/CONTRIBUTING.md CHANGED
@@ -6,7 +6,7 @@ We're excited you're considering contributing to our project! Your patches are e
6
6
 
7
7
  * Make sure you have a [GitHub account](https://github.com/signup/free)
8
8
  * Make sure you have a [HelloSign account](http://www.hellosign.com)
9
- * Submit a new [issue ticket](https://github.com/HelloFax/hellosign-java-sdk/issues), assuming one does not already exist.
9
+ * Submit a new [issue ticket](https://github.com/HelloFax/hellosign-ruby-sdk/issues), assuming one does not already exist.
10
10
  * Clearly describe the issue including steps to reproduce when it is a bug.
11
11
  * Make sure to include the version you are using which has the issue (and confirm that the issue you are having has not been fixed in a later version)
12
12
  * Fork the repository on GitHub
@@ -57,10 +57,10 @@ module HelloSign
57
57
  # edit_url = @client.get_embedded_template_edit_url :template_id => '39e3387f738adfa7ddd4cbd4c00d2a8ab6e4194b'
58
58
  #
59
59
  def get_embedded_template_edit_url(opts)
60
- defaults = { :skip_signer_roles => 0, :skip_subject_message => 0 }
60
+ defaults = { :skip_signer_roles => 0, :skip_subject_message => 0, :test_mode => 0 }
61
61
  opts = defaults.merge(opts)
62
62
 
63
- HelloSign::Resource::Embedded.new get("/embedded/edit_url/#{opts[:template_id]}?skip_signer_roles=#{opts[:skip_signer_roles]}&skip_subject_message=#{opts[:skip_subject_message]}")
63
+ HelloSign::Resource::Embedded.new get("/embedded/edit_url/#{opts[:template_id]}?skip_signer_roles=#{opts[:skip_signer_roles]}&skip_subject_message=#{opts[:skip_subject_message]}&test_mode=#{opts[:test_mode]}")
64
64
  end
65
65
  end
66
66
  end
@@ -64,7 +64,7 @@ module HelloSign
64
64
  #
65
65
  def get_signature_requests(opts={})
66
66
  path = '/signature_request/list'
67
- opts[:query] = create_search_string(opts[:query])
67
+ opts[:query] = create_search_string(opts[:query]) if opts[:query]
68
68
  query = create_query_string(opts, [:page, :page_size, :ux_version, :query])
69
69
  path += query
70
70
  HelloSign::Resource::ResourceArray.new get(path, opts), 'signature_requests', HelloSign::Resource::SignatureRequest
@@ -23,5 +23,5 @@
23
23
  #
24
24
 
25
25
  module HelloSign
26
- VERSION = '3.2.9'
26
+ VERSION = '3.2.10'
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hellosign-ruby-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.9
4
+ version: 3.2.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - HelloSign
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-10 00:00:00.000000000 Z
11
+ date: 2016-04-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler