docusign_click 1.0.0.beta → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -1
- data/LICENSE +1 -1
- data/README.md +2 -2
- data/docusign_click.gemspec +9 -6
- data/lib/docusign_click/api/accounts_api.rb +35 -280
- data/lib/docusign_click/api_client.rb +382 -0
- data/lib/docusign_click/api_error.rb +37 -0
- data/lib/docusign_click/client/api_client.rb +19 -14
- data/lib/docusign_click/client/api_error.rb +3 -3
- data/lib/docusign_click/client/auth/oauth.rb +1 -1
- data/lib/docusign_click/configuration.rb +2 -1
- data/lib/docusign_click/models/clickwrap_request.rb +17 -7
- data/lib/docusign_click/models/display_settings.rb +1 -11
- data/lib/docusign_click/models/document_data.rb +225 -0
- data/lib/docusign_click/models/user_agreement_request.rb +1 -11
- data/lib/docusign_click/version.rb +1 -1
- data/runLinter.sh +1 -0
- data/tests/spec/unit_tests_using_jwt_spec.rb +2 -1
- metadata +83 -27
- data/Gemfile.lock +0 -69
- data/docusign_click-1.0.0.pre.alpha.gem +0 -0
- data/docusign_click-1.0.0.rc1.gem +0 -0
- data/lib/.DS_Store +0 -0
- data/lib/docusign_click/.DS_Store +0 -0
- data/lib/docusign_click/api/.DS_Store +0 -0
- data/lib/docusign_click/client/.DS_Store +0 -0
- data/tests/Gemfile.lock +0 -42
- data/tests/docs/private.pem +0 -27
@@ -0,0 +1,225 @@
|
|
1
|
+
=begin
|
2
|
+
#DocuSign Click API
|
3
|
+
|
4
|
+
#DocuSign Click lets you capture consent to standard agreement terms with a single click: terms and conditions, terms of service, terms of use, privacy policies, and more. The Click API lets you include this customizable clickwrap solution in your DocuSign integrations.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
Contact: devcenter@docusign.com
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
|
10
|
+
=end
|
11
|
+
|
12
|
+
require 'date'
|
13
|
+
|
14
|
+
module DocuSign_Click
|
15
|
+
# The object of data to be merged with the clickwrap document. A merged document must be created from Click's web editor and supports fullName, email, company, title and date.
|
16
|
+
class DocumentData
|
17
|
+
# The full name of the signer. This field is created in the UI editor for a Clickwrap document. Only required if present in the document.
|
18
|
+
attr_accessor :full_name
|
19
|
+
|
20
|
+
# The email address of the signer. This field is created in the UI editor for a Clickwrap document. Only required if present in the document.
|
21
|
+
attr_accessor :email
|
22
|
+
|
23
|
+
# The company name of the signer. This field is created in the UI editor for a Clickwrap document. Only required if present in the document.
|
24
|
+
attr_accessor :company
|
25
|
+
|
26
|
+
# The job title of the signer. This field is created in the UI editor for a Clickwrap document. Only required if present in the document.
|
27
|
+
attr_accessor :job_title
|
28
|
+
|
29
|
+
# A custom date for the contract. This field is created in the UI editor for a Clickwrap document. Only required if present in the document.
|
30
|
+
attr_accessor :date
|
31
|
+
|
32
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
33
|
+
def self.attribute_map
|
34
|
+
{
|
35
|
+
:'full_name' => :'fullName',
|
36
|
+
:'email' => :'email',
|
37
|
+
:'company' => :'company',
|
38
|
+
:'job_title' => :'jobTitle',
|
39
|
+
:'date' => :'date'
|
40
|
+
}
|
41
|
+
end
|
42
|
+
|
43
|
+
# Attribute type mapping.
|
44
|
+
def self.swagger_types
|
45
|
+
{
|
46
|
+
:'full_name' => :'String',
|
47
|
+
:'email' => :'String',
|
48
|
+
:'company' => :'String',
|
49
|
+
:'job_title' => :'String',
|
50
|
+
:'date' => :'String'
|
51
|
+
}
|
52
|
+
end
|
53
|
+
|
54
|
+
# Initializes the object
|
55
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
56
|
+
def initialize(attributes = {})
|
57
|
+
return unless attributes.is_a?(Hash)
|
58
|
+
|
59
|
+
# convert string to symbol for hash key
|
60
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
61
|
+
|
62
|
+
if attributes.has_key?(:'fullName')
|
63
|
+
self.full_name = attributes[:'fullName']
|
64
|
+
end
|
65
|
+
|
66
|
+
if attributes.has_key?(:'email')
|
67
|
+
self.email = attributes[:'email']
|
68
|
+
end
|
69
|
+
|
70
|
+
if attributes.has_key?(:'company')
|
71
|
+
self.company = attributes[:'company']
|
72
|
+
end
|
73
|
+
|
74
|
+
if attributes.has_key?(:'jobTitle')
|
75
|
+
self.job_title = attributes[:'jobTitle']
|
76
|
+
end
|
77
|
+
|
78
|
+
if attributes.has_key?(:'date')
|
79
|
+
self.date = attributes[:'date']
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
84
|
+
# @return Array for valid properties with the reasons
|
85
|
+
def list_invalid_properties
|
86
|
+
invalid_properties = Array.new
|
87
|
+
invalid_properties
|
88
|
+
end
|
89
|
+
|
90
|
+
# Check to see if the all the properties in the model are valid
|
91
|
+
# @return true if the model is valid
|
92
|
+
def valid?
|
93
|
+
true
|
94
|
+
end
|
95
|
+
|
96
|
+
# Checks equality by comparing each attribute.
|
97
|
+
# @param [Object] Object to be compared
|
98
|
+
def ==(o)
|
99
|
+
return true if self.equal?(o)
|
100
|
+
self.class == o.class &&
|
101
|
+
full_name == o.full_name &&
|
102
|
+
email == o.email &&
|
103
|
+
company == o.company &&
|
104
|
+
job_title == o.job_title &&
|
105
|
+
date == o.date
|
106
|
+
end
|
107
|
+
|
108
|
+
# @see the `==` method
|
109
|
+
# @param [Object] Object to be compared
|
110
|
+
def eql?(o)
|
111
|
+
self == o
|
112
|
+
end
|
113
|
+
|
114
|
+
# Calculates hash code according to all attributes.
|
115
|
+
# @return [Fixnum] Hash code
|
116
|
+
def hash
|
117
|
+
[full_name, email, company, job_title, date].hash
|
118
|
+
end
|
119
|
+
|
120
|
+
# Builds the object from hash
|
121
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
122
|
+
# @return [Object] Returns the model itself
|
123
|
+
def build_from_hash(attributes)
|
124
|
+
return nil unless attributes.is_a?(Hash)
|
125
|
+
self.class.swagger_types.each_pair do |key, type|
|
126
|
+
if type =~ /\AArray<(.*)>/i
|
127
|
+
# check to ensure the input is an array given that the attribute
|
128
|
+
# is documented as an array but the input is not
|
129
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
130
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
131
|
+
end
|
132
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
133
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
134
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
135
|
+
end
|
136
|
+
|
137
|
+
self
|
138
|
+
end
|
139
|
+
|
140
|
+
# Deserializes the data based on type
|
141
|
+
# @param string type Data type
|
142
|
+
# @param string value Value to be deserialized
|
143
|
+
# @return [Object] Deserialized data
|
144
|
+
def _deserialize(type, value)
|
145
|
+
case type.to_sym
|
146
|
+
when :DateTime
|
147
|
+
DateTime.parse(value)
|
148
|
+
when :Date
|
149
|
+
Date.parse(value)
|
150
|
+
when :String
|
151
|
+
value.to_s
|
152
|
+
when :Integer
|
153
|
+
value.to_i
|
154
|
+
when :Float
|
155
|
+
value.to_f
|
156
|
+
when :BOOLEAN
|
157
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
158
|
+
true
|
159
|
+
else
|
160
|
+
false
|
161
|
+
end
|
162
|
+
when :Object
|
163
|
+
# generic object (usually a Hash), return directly
|
164
|
+
value
|
165
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
166
|
+
inner_type = Regexp.last_match[:inner_type]
|
167
|
+
value.map { |v| _deserialize(inner_type, v) }
|
168
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
169
|
+
k_type = Regexp.last_match[:k_type]
|
170
|
+
v_type = Regexp.last_match[:v_type]
|
171
|
+
{}.tap do |hash|
|
172
|
+
value.each do |k, v|
|
173
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
174
|
+
end
|
175
|
+
end
|
176
|
+
else # model
|
177
|
+
temp_model = DocuSign_Click.const_get(type).new
|
178
|
+
temp_model.build_from_hash(value)
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
# Returns the string representation of the object
|
183
|
+
# @return [String] String presentation of the object
|
184
|
+
def to_s
|
185
|
+
to_hash.to_s
|
186
|
+
end
|
187
|
+
|
188
|
+
# to_body is an alias to to_hash (backward compatibility)
|
189
|
+
# @return [Hash] Returns the object in the form of hash
|
190
|
+
def to_body
|
191
|
+
to_hash
|
192
|
+
end
|
193
|
+
|
194
|
+
# Returns the object in the form of hash
|
195
|
+
# @return [Hash] Returns the object in the form of hash
|
196
|
+
def to_hash
|
197
|
+
hash = {}
|
198
|
+
self.class.attribute_map.each_pair do |attr, param|
|
199
|
+
value = self.send(attr)
|
200
|
+
next if value.nil?
|
201
|
+
hash[param] = _to_hash(value)
|
202
|
+
end
|
203
|
+
hash
|
204
|
+
end
|
205
|
+
|
206
|
+
# Outputs non-array value in the form of hash
|
207
|
+
# For object, use to_hash. Otherwise, just return the value
|
208
|
+
# @param [Object] value Any valid value
|
209
|
+
# @return [Hash] Returns the value in the form of hash
|
210
|
+
def _to_hash(value)
|
211
|
+
if value.is_a?(Array)
|
212
|
+
value.compact.map { |v| _to_hash(v) }
|
213
|
+
elsif value.is_a?(Hash)
|
214
|
+
{}.tap do |hash|
|
215
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
216
|
+
end
|
217
|
+
elsif value.respond_to? :to_hash
|
218
|
+
value.to_hash
|
219
|
+
else
|
220
|
+
value
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
224
|
+
end
|
225
|
+
end
|
@@ -16,9 +16,6 @@ module DocuSign_Click
|
|
16
16
|
#
|
17
17
|
attr_accessor :client_user_id
|
18
18
|
|
19
|
-
#
|
20
|
-
attr_accessor :host_origin
|
21
|
-
|
22
19
|
#
|
23
20
|
attr_accessor :metadata
|
24
21
|
|
@@ -26,7 +23,6 @@ module DocuSign_Click
|
|
26
23
|
def self.attribute_map
|
27
24
|
{
|
28
25
|
:'client_user_id' => :'clientUserId',
|
29
|
-
:'host_origin' => :'hostOrigin',
|
30
26
|
:'metadata' => :'metadata'
|
31
27
|
}
|
32
28
|
end
|
@@ -35,7 +31,6 @@ module DocuSign_Click
|
|
35
31
|
def self.swagger_types
|
36
32
|
{
|
37
33
|
:'client_user_id' => :'String',
|
38
|
-
:'host_origin' => :'String',
|
39
34
|
:'metadata' => :'String'
|
40
35
|
}
|
41
36
|
end
|
@@ -52,10 +47,6 @@ module DocuSign_Click
|
|
52
47
|
self.client_user_id = attributes[:'clientUserId']
|
53
48
|
end
|
54
49
|
|
55
|
-
if attributes.has_key?(:'hostOrigin')
|
56
|
-
self.host_origin = attributes[:'hostOrigin']
|
57
|
-
end
|
58
|
-
|
59
50
|
if attributes.has_key?(:'metadata')
|
60
51
|
self.metadata = attributes[:'metadata']
|
61
52
|
end
|
@@ -80,7 +71,6 @@ module DocuSign_Click
|
|
80
71
|
return true if self.equal?(o)
|
81
72
|
self.class == o.class &&
|
82
73
|
client_user_id == o.client_user_id &&
|
83
|
-
host_origin == o.host_origin &&
|
84
74
|
metadata == o.metadata
|
85
75
|
end
|
86
76
|
|
@@ -93,7 +83,7 @@ module DocuSign_Click
|
|
93
83
|
# Calculates hash code according to all attributes.
|
94
84
|
# @return [Fixnum] Hash code
|
95
85
|
def hash
|
96
|
-
[client_user_id,
|
86
|
+
[client_user_id, metadata].hash
|
97
87
|
end
|
98
88
|
|
99
89
|
# Builds the object from hash
|
data/runLinter.sh
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
./vendor/bundle/ruby/2.6.0/bin/rubocop -a
|
@@ -1,6 +1,7 @@
|
|
1
1
|
require 'docusign_click'
|
2
2
|
require 'base64'
|
3
3
|
require 'uri'
|
4
|
+
require 'addressable/uri'
|
4
5
|
|
5
6
|
describe 'DocuSign Ruby Client Tests' do
|
6
7
|
def login
|
@@ -32,7 +33,7 @@ describe 'DocuSign Ruby Client Tests' do
|
|
32
33
|
$account_id = account.account_id
|
33
34
|
|
34
35
|
# IMPORTANT: Use the base url from the login account to instantiant the api_client
|
35
|
-
base_uri = URI.parse($base_uri)
|
36
|
+
base_uri = Addressable::URI.parse($base_uri)
|
36
37
|
$api_client.set_base_path( "%s://%s/clickapi" % [base_uri.scheme, base_uri.host])
|
37
38
|
|
38
39
|
return account
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docusign_click
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DocuSign
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -30,6 +30,26 @@ dependencies:
|
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.2.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: addressable
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '2.7'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 2.7.0
|
43
|
+
type: :runtime
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '2.7'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 2.7.0
|
33
53
|
- !ruby/object:Gem::Dependency
|
34
54
|
name: typhoeus
|
35
55
|
requirement: !ruby/object:Gem::Requirement
|
@@ -54,42 +74,82 @@ dependencies:
|
|
54
74
|
name: json
|
55
75
|
requirement: !ruby/object:Gem::Requirement
|
56
76
|
requirements:
|
57
|
-
- - ">="
|
58
|
-
- !ruby/object:Gem::Version
|
59
|
-
version: 2.1.0
|
60
77
|
- - "~>"
|
61
78
|
- !ruby/object:Gem::Version
|
62
79
|
version: '2.1'
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 2.1.0
|
63
83
|
type: :runtime
|
64
84
|
prerelease: false
|
65
85
|
version_requirements: !ruby/object:Gem::Requirement
|
66
86
|
requirements:
|
67
|
-
- - ">="
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: 2.1.0
|
70
87
|
- - "~>"
|
71
88
|
- !ruby/object:Gem::Version
|
72
89
|
version: '2.1'
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: 2.1.0
|
73
93
|
- !ruby/object:Gem::Dependency
|
74
|
-
name: rspec
|
94
|
+
name: rspec-mocks
|
75
95
|
requirement: !ruby/object:Gem::Requirement
|
76
96
|
requirements:
|
97
|
+
- - "~>"
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '3.8'
|
100
|
+
- - ">="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 3.8.0
|
103
|
+
type: :development
|
104
|
+
prerelease: false
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - "~>"
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '3.8'
|
77
110
|
- - ">="
|
78
111
|
- !ruby/object:Gem::Version
|
79
|
-
version: 3.
|
112
|
+
version: 3.8.0
|
113
|
+
- !ruby/object:Gem::Dependency
|
114
|
+
name: rspec-expectations
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
80
117
|
- - "~>"
|
81
118
|
- !ruby/object:Gem::Version
|
82
|
-
version: '3.
|
119
|
+
version: '3.8'
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: 3.8.0
|
83
123
|
type: :development
|
84
124
|
prerelease: false
|
85
125
|
version_requirements: !ruby/object:Gem::Requirement
|
86
126
|
requirements:
|
127
|
+
- - "~>"
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '3.8'
|
130
|
+
- - ">="
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: 3.8.0
|
133
|
+
- !ruby/object:Gem::Dependency
|
134
|
+
name: rspec
|
135
|
+
requirement: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - "~>"
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '3.4'
|
87
140
|
- - ">="
|
88
141
|
- !ruby/object:Gem::Version
|
89
|
-
version: 3.
|
142
|
+
version: 3.4.0
|
143
|
+
type: :development
|
144
|
+
prerelease: false
|
145
|
+
version_requirements: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
90
147
|
- - "~>"
|
91
148
|
- !ruby/object:Gem::Version
|
92
|
-
version: '3.
|
149
|
+
version: '3.4'
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 3.4.0
|
93
153
|
- !ruby/object:Gem::Dependency
|
94
154
|
name: vcr
|
95
155
|
requirement: !ruby/object:Gem::Requirement
|
@@ -199,7 +259,7 @@ dependencies:
|
|
199
259
|
version: '0.2'
|
200
260
|
- - ">="
|
201
261
|
- !ruby/object:Gem::Version
|
202
|
-
version: 0.2.
|
262
|
+
version: 0.2.11
|
203
263
|
type: :development
|
204
264
|
prerelease: false
|
205
265
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -209,7 +269,7 @@ dependencies:
|
|
209
269
|
version: '0.2'
|
210
270
|
- - ">="
|
211
271
|
- !ruby/object:Gem::Version
|
212
|
-
version: 0.2.
|
272
|
+
version: 0.2.11
|
213
273
|
description: The DocuSign package makes integrating DocuSign into your apps and websites
|
214
274
|
a super fast and painless process. The library is open sourced on GitHub, look for
|
215
275
|
the docusign-click-ruby-client repository.
|
@@ -221,20 +281,15 @@ extra_rdoc_files: []
|
|
221
281
|
files:
|
222
282
|
- CHANGELOG.md
|
223
283
|
- Gemfile
|
224
|
-
- Gemfile.lock
|
225
284
|
- LICENSE
|
226
285
|
- README.md
|
227
286
|
- Rakefile
|
228
|
-
- docusign_click-1.0.0.pre.alpha.gem
|
229
|
-
- docusign_click-1.0.0.rc1.gem
|
230
287
|
- docusign_click.gemspec
|
231
288
|
- git_push.sh
|
232
|
-
- lib/.DS_Store
|
233
289
|
- lib/docusign_click.rb
|
234
|
-
- lib/docusign_click/.DS_Store
|
235
|
-
- lib/docusign_click/api/.DS_Store
|
236
290
|
- lib/docusign_click/api/accounts_api.rb
|
237
|
-
- lib/docusign_click/
|
291
|
+
- lib/docusign_click/api_client.rb
|
292
|
+
- lib/docusign_click/api_error.rb
|
238
293
|
- lib/docusign_click/client/api_client.rb
|
239
294
|
- lib/docusign_click/client/api_error.rb
|
240
295
|
- lib/docusign_click/client/auth/oauth.rb
|
@@ -257,6 +312,7 @@ files:
|
|
257
312
|
- lib/docusign_click/models/document.rb
|
258
313
|
- lib/docusign_click/models/document_conversion_request.rb
|
259
314
|
- lib/docusign_click/models/document_conversion_response.rb
|
315
|
+
- lib/docusign_click/models/document_data.rb
|
260
316
|
- lib/docusign_click/models/error_details.rb
|
261
317
|
- lib/docusign_click/models/html_result.rb
|
262
318
|
- lib/docusign_click/models/recipient_copy_request.rb
|
@@ -266,10 +322,9 @@ files:
|
|
266
322
|
- lib/docusign_click/models/user_agreement_request.rb
|
267
323
|
- lib/docusign_click/models/user_agreement_response.rb
|
268
324
|
- lib/docusign_click/version.rb
|
325
|
+
- runLinter.sh
|
269
326
|
- tests/Gemfile
|
270
|
-
- tests/Gemfile.lock
|
271
327
|
- tests/docs/Test.pdf
|
272
|
-
- tests/docs/private.pem
|
273
328
|
- tests/spec/unit_tests_using_jwt_spec.rb
|
274
329
|
homepage: https://github.com/docusign/docusign-click-ruby-client
|
275
330
|
licenses:
|
@@ -286,11 +341,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
286
341
|
version: '1.9'
|
287
342
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
288
343
|
requirements:
|
289
|
-
- - "
|
344
|
+
- - ">="
|
290
345
|
- !ruby/object:Gem::Version
|
291
|
-
version:
|
346
|
+
version: '0'
|
292
347
|
requirements: []
|
293
|
-
|
348
|
+
rubyforge_project:
|
349
|
+
rubygems_version: 2.7.6
|
294
350
|
signing_key:
|
295
351
|
specification_version: 4
|
296
352
|
summary: DocuSign Click API Ruby Gem
|
data/Gemfile.lock
DELETED
@@ -1,69 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
docusign_click (1.0.0.pre.alpha)
|
5
|
-
json (~> 2.1, >= 2.1.0)
|
6
|
-
jwt (~> 2.2, >= 2.2.1)
|
7
|
-
typhoeus (~> 1.0, >= 1.0.1)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
ZenTest (4.12.0)
|
13
|
-
addressable (2.7.0)
|
14
|
-
public_suffix (>= 2.0.2, < 5.0)
|
15
|
-
autotest (4.4.6)
|
16
|
-
ZenTest (>= 4.4.1)
|
17
|
-
autotest-fsevent (0.2.17)
|
18
|
-
sys-uname
|
19
|
-
autotest-growl (0.2.16)
|
20
|
-
autotest-rails-pure (4.1.2)
|
21
|
-
crack (0.4.4)
|
22
|
-
diff-lcs (1.4.4)
|
23
|
-
ethon (0.12.0)
|
24
|
-
ffi (>= 1.3.0)
|
25
|
-
ffi (1.13.1)
|
26
|
-
hashdiff (1.0.1)
|
27
|
-
json (2.3.1)
|
28
|
-
jwt (2.2.2)
|
29
|
-
public_suffix (4.0.6)
|
30
|
-
rake (12.3.3)
|
31
|
-
rspec (3.9.0)
|
32
|
-
rspec-core (~> 3.9.0)
|
33
|
-
rspec-expectations (~> 3.9.0)
|
34
|
-
rspec-mocks (~> 3.9.0)
|
35
|
-
rspec-core (3.9.3)
|
36
|
-
rspec-support (~> 3.9.3)
|
37
|
-
rspec-expectations (3.9.3)
|
38
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
39
|
-
rspec-support (~> 3.9.0)
|
40
|
-
rspec-mocks (3.9.1)
|
41
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
42
|
-
rspec-support (~> 3.9.0)
|
43
|
-
rspec-support (3.9.4)
|
44
|
-
sys-uname (1.2.1)
|
45
|
-
ffi (>= 1.0.0)
|
46
|
-
typhoeus (1.4.0)
|
47
|
-
ethon (>= 0.9.0)
|
48
|
-
vcr (3.0.3)
|
49
|
-
webmock (1.24.6)
|
50
|
-
addressable (>= 2.3.6)
|
51
|
-
crack (>= 0.3.2)
|
52
|
-
hashdiff
|
53
|
-
|
54
|
-
PLATFORMS
|
55
|
-
ruby
|
56
|
-
|
57
|
-
DEPENDENCIES
|
58
|
-
autotest (~> 4.4, >= 4.4.6)
|
59
|
-
autotest-fsevent (~> 0.2, >= 0.2.12)
|
60
|
-
autotest-growl (~> 0.2, >= 0.2.16)
|
61
|
-
autotest-rails-pure (~> 4.1, >= 4.1.2)
|
62
|
-
docusign_click!
|
63
|
-
rake (~> 12.3.3)
|
64
|
-
rspec (~> 3.6, >= 3.6.0)
|
65
|
-
vcr (~> 3.0, >= 3.0.1)
|
66
|
-
webmock (~> 1.24, >= 1.24.3)
|
67
|
-
|
68
|
-
BUNDLED WITH
|
69
|
-
1.17.2
|
Binary file
|
Binary file
|
data/lib/.DS_Store
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/tests/Gemfile.lock
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
docusign_click (1.0.0.rc1)
|
5
|
-
json (~> 2.1, >= 2.1.0)
|
6
|
-
jwt (~> 2.2, >= 2.2.1)
|
7
|
-
typhoeus (~> 1.0, >= 1.0.1)
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
diff-lcs (1.4.4)
|
13
|
-
ethon (0.12.0)
|
14
|
-
ffi (>= 1.3.0)
|
15
|
-
ffi (1.13.1)
|
16
|
-
json (2.3.1)
|
17
|
-
jwt (2.2.2)
|
18
|
-
rspec (3.9.0)
|
19
|
-
rspec-core (~> 3.9.0)
|
20
|
-
rspec-expectations (~> 3.9.0)
|
21
|
-
rspec-mocks (~> 3.9.0)
|
22
|
-
rspec-core (3.9.3)
|
23
|
-
rspec-support (~> 3.9.3)
|
24
|
-
rspec-expectations (3.9.3)
|
25
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
26
|
-
rspec-support (~> 3.9.0)
|
27
|
-
rspec-mocks (3.9.1)
|
28
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
29
|
-
rspec-support (~> 3.9.0)
|
30
|
-
rspec-support (3.9.4)
|
31
|
-
typhoeus (1.4.0)
|
32
|
-
ethon (>= 0.9.0)
|
33
|
-
|
34
|
-
PLATFORMS
|
35
|
-
ruby
|
36
|
-
|
37
|
-
DEPENDENCIES
|
38
|
-
docusign_click!
|
39
|
-
rspec
|
40
|
-
|
41
|
-
BUNDLED WITH
|
42
|
-
1.17.2
|
data/tests/docs/private.pem
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
-----BEGIN RSA PRIVATE KEY-----
|
2
|
-
MIIEogIBAAKCAQEAq1yUzw3owo+yIuBntG4EFPEaeJqemjdnIKu4JJB8Vm5LJRaX
|
3
|
-
68smh+pz2K0GtfqB3fiIaguw3NsVZ8v+carfxzoX58jeiITi6NDXK6i3Q+9tyCJp
|
4
|
-
rxcmTlyPIh1o+R9BaZAn7Uc0OIkkconrncRlDAjgRusBs79izJIqMHE+YG5uSCG+
|
5
|
-
TLDP+LtzzPK8A4rRB+/lDKoXM+O905KBSEJyZ2xGZOHY4SEWKH5vjA50syy6oGpM
|
6
|
-
Hpcpx4rrvRLfcmJDcSHvY1WT3GaPAOXnSoGzUDnwiOPdS1rcznH2nwrw+kPWxHwj
|
7
|
-
sE2O/jvELduVl8H/PPsW1wtyjnEt7B7Q9wrWcwIDAQABAoIBAAMpoHW5BJg+7Gm5
|
8
|
-
TZk1Wg4RKARhI32u3/KTi/PhVoKohPu4cvYBTVyL3z9WsJCvGkw3/W8yzcVtLnyN
|
9
|
-
uf90hJ0tA8RVBZbsXGWX/0GxwRxku3IGVm790rfDYwVp9nlobe7TsSOeZ6sO6jyw
|
10
|
-
h1kp3EiggqS9fgFIhbLgtmEnbm0VBfA/+8UNZQxJxzw0uZCVojEoFtbxyv3inHSu
|
11
|
-
clKGs3sDQ1RA2PDE3xyOR51a4RLAWuavQC1TdydS/QEnCmxJnZ1eQY+bjt+GnHOO
|
12
|
-
OPzgCKHu1TdJyPT57kU7FXMEkuuj5aG1i/UtZSNH+L386y6nPmo7b/mXyFgMil7r
|
13
|
-
lNaT81ECgYEA7/b0uotZEm3Gz1OwNYmQS8gNxAq1WtW225RCBxiEV+S7xslueCiG
|
14
|
-
nATBidwMI/8XbN8KvbmU2TNnndcsUNt9ta8ufX0GXQ0pjEXNL3ZfTKoZF0e/Bn3W
|
15
|
-
BqSV1YBlpE7B81M79mSVYbMScfzxCVjaU53JRDzYUYxPQNV+iMkYk8kCgYEAttAK
|
16
|
-
2ZKPozlWTP6GO1v3ekm+QwUftvJ43XyZ59Pzhegjm2hkIEbUuIPCVfuQIVCvfPIB
|
17
|
-
yAoTC+9i4rAPmCvYXoGYAx8l5YuwfiUh8ajTavzgrCk9u9/xOH2ypIxRnHzpe99t
|
18
|
-
V+kLEEuW+uLcN9+D10bP04qTHo+DIGh9Muj23lsCgYAkXqy2/VnRtju0vr1tT91D
|
19
|
-
7x1PAkR8cPnXDAB57NhaLfvb5DnPEm1chkgDKgvZBNe7E48gNFmAFg91V+CKnMnP
|
20
|
-
2K5WLLXjMpSCgy3XLLzC9OD6q1AjnrzqotVm16AQKDOzOoFTFemiNi7sgebSgNoO
|
21
|
-
ZFLV+dbbfUWh0Pntp3UHKQKBgF1/9DypUBusZK5Gc4MCm4WJF+2RPlJEm3q0ksbW
|
22
|
-
SbQQMb33W1aCw6OHiCqP2nyfltGxuSWFuY4eJpZIdAFhU22qnIPkN266zk8GUOEX
|
23
|
-
duI+ae7DvRZNCEPbTjYIqmj+HjDD6lnPEGCKOLMiun09LWI6jmrkcjBsOCWoK3iR
|
24
|
-
XEoHAoGAOSXO1kM6p0MZEhKxrVunF6HpW8aHRjcdcjjJJRFgap3hxCT1OZ9YB+SD
|
25
|
-
Prn+cjFJ7WSMrHpIRt56FZGUUgmp+97WqYsIuAJx56ETKdAVx6C7RuEtbJoqdTER
|
26
|
-
hS4vaGq+EWmjVc/pSMbBzZ99lpIEbyYBk2jD3GpCWgSd9CDrxGY=
|
27
|
-
-----END RSA PRIVATE KEY-----
|