hellosign-api 1.0.3 → 1.0.4
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/CONTRIBUTING.md +1 -1
- data/Gemfile +1 -1
- data/lib/hello_sign/configuration.rb +1 -1
- data/lib/hello_sign/version.rb +1 -1
- data/lib/{hellosign-ruby-sdk.rb → hellosign-api.rb} +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a65d836c44c62f81bdf679bbd2df87ea6c7ce6b2260f9872434e231af94e299d
|
|
4
|
+
data.tar.gz: 05df8e4c20de933e96f636128049c78b0c23edf7cadd5c770c23b1047cb553cc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20699056beadebb0e61828a64e8be9a3d7ab179b6a8532e5b1922591bf8e22a539e9cede40683dc5f5da958ed0ac9d4e5247a899465346cf87e802cfe02d4080
|
|
7
|
+
data.tar.gz: eb4242eb16ff3708b1c1b83629e66a56ea2765ce73b29de37720024b15dddfca431b885375b1f4a14a2451fedd84db1fbf3bdeb575449600e73176acf72b1bca
|
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/
|
|
9
|
+
* Submit a new [issue ticket](https://github.com/withgrayce/hellosign-api/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
|
data/Gemfile
CHANGED
|
@@ -31,7 +31,7 @@ module HelloSign
|
|
|
31
31
|
DEFAULT_OAUTH_ENDPOINT = 'https://app.hellosign.com'
|
|
32
32
|
VALID_OPTIONS_KEYS = [:end_point, :oauth_end_point, :api_version, :user_agent, :client_id, :client_secret, :email_address, :password, :api_key, :auth_token, :log_level, :logging, :proxy_uri, :proxy_user, :proxy_pass, :timeout]
|
|
33
33
|
|
|
34
|
-
DEFAULT_USER_AGENT = "hellosign-
|
|
34
|
+
DEFAULT_USER_AGENT = "hellosign-api/" + HelloSign::VERSION
|
|
35
35
|
|
|
36
36
|
attr_accessor *VALID_OPTIONS_KEYS
|
|
37
37
|
|
data/lib/hello_sign/version.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# A wrapper that allows requiring via the Gemfile name ('hellosign-
|
|
2
|
-
# This allows you to require either 'hello_sign' (unchanged) or 'hellosign-
|
|
1
|
+
# A wrapper that allows requiring via the Gemfile name ('hellosign-api')
|
|
2
|
+
# This allows you to require either 'hello_sign' (unchanged) or 'hellosign-api' in your code
|
|
3
3
|
|
|
4
4
|
require 'hello_sign'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hellosign-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- HelloSign, Aubrey Holland
|
|
@@ -166,7 +166,7 @@ files:
|
|
|
166
166
|
- lib/hello_sign/resource/template_draft.rb
|
|
167
167
|
- lib/hello_sign/resource/unclaimed_draft.rb
|
|
168
168
|
- lib/hello_sign/version.rb
|
|
169
|
-
- lib/hellosign-
|
|
169
|
+
- lib/hellosign-api.rb
|
|
170
170
|
- spec/fixtures/account.json
|
|
171
171
|
- spec/fixtures/api_app.json
|
|
172
172
|
- spec/fixtures/api_apps.json
|