docusign_click 1.0.0 → 1.1.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/docusign_click.gemspec +8 -6
- data/lib/docusign_click/api/accounts_api.rb +32 -273
- data/lib/docusign_click/client/api_client.rb +16 -12
- data/lib/docusign_click/client/api_error.rb +3 -3
- data/lib/docusign_click/client/auth/oauth.rb +1 -1
- 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 +7 -8
- data/lib/docusign_click/models/user_agreement_response.rb +10 -1
- data/lib/docusign_click/version.rb +1 -1
- data/lib/docusign_click.rb +1 -0
- data/runLinter.sh +1 -0
- metadata +67 -35
- data/Gemfile.lock +0 -69
- data/docusign_click-1.0.0.beta.gem +0 -0
- data/docusign_click-1.0.0.beta2.gem +0 -0
- 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,8 +16,7 @@ module DocuSign_Click
|
|
16
16
|
#
|
17
17
|
attr_accessor :client_user_id
|
18
18
|
|
19
|
-
|
20
|
-
attr_accessor :host_origin
|
19
|
+
attr_accessor :document_data
|
21
20
|
|
22
21
|
#
|
23
22
|
attr_accessor :metadata
|
@@ -26,7 +25,7 @@ module DocuSign_Click
|
|
26
25
|
def self.attribute_map
|
27
26
|
{
|
28
27
|
:'client_user_id' => :'clientUserId',
|
29
|
-
:'
|
28
|
+
:'document_data' => :'documentData',
|
30
29
|
:'metadata' => :'metadata'
|
31
30
|
}
|
32
31
|
end
|
@@ -35,7 +34,7 @@ module DocuSign_Click
|
|
35
34
|
def self.swagger_types
|
36
35
|
{
|
37
36
|
:'client_user_id' => :'String',
|
38
|
-
:'
|
37
|
+
:'document_data' => :'DocumentData',
|
39
38
|
:'metadata' => :'String'
|
40
39
|
}
|
41
40
|
end
|
@@ -52,8 +51,8 @@ module DocuSign_Click
|
|
52
51
|
self.client_user_id = attributes[:'clientUserId']
|
53
52
|
end
|
54
53
|
|
55
|
-
if attributes.has_key?(:'
|
56
|
-
self.
|
54
|
+
if attributes.has_key?(:'documentData')
|
55
|
+
self.document_data = attributes[:'documentData']
|
57
56
|
end
|
58
57
|
|
59
58
|
if attributes.has_key?(:'metadata')
|
@@ -80,7 +79,7 @@ module DocuSign_Click
|
|
80
79
|
return true if self.equal?(o)
|
81
80
|
self.class == o.class &&
|
82
81
|
client_user_id == o.client_user_id &&
|
83
|
-
|
82
|
+
document_data == o.document_data &&
|
84
83
|
metadata == o.metadata
|
85
84
|
end
|
86
85
|
|
@@ -93,7 +92,7 @@ module DocuSign_Click
|
|
93
92
|
# Calculates hash code according to all attributes.
|
94
93
|
# @return [Fixnum] Hash code
|
95
94
|
def hash
|
96
|
-
[client_user_id,
|
95
|
+
[client_user_id, document_data, metadata].hash
|
97
96
|
end
|
98
97
|
|
99
98
|
# Builds the object from hash
|
@@ -40,6 +40,8 @@ module DocuSign_Click
|
|
40
40
|
#
|
41
41
|
attr_accessor :declined_on
|
42
42
|
|
43
|
+
attr_accessor :document_data
|
44
|
+
|
43
45
|
#
|
44
46
|
attr_accessor :documents
|
45
47
|
|
@@ -72,6 +74,7 @@ module DocuSign_Click
|
|
72
74
|
:'consumer_disclosure_html' => :'consumerDisclosureHtml',
|
73
75
|
:'created_on' => :'createdOn',
|
74
76
|
:'declined_on' => :'declinedOn',
|
77
|
+
:'document_data' => :'documentData',
|
75
78
|
:'documents' => :'documents',
|
76
79
|
:'metadata' => :'metadata',
|
77
80
|
:'settings' => :'settings',
|
@@ -94,6 +97,7 @@ module DocuSign_Click
|
|
94
97
|
:'consumer_disclosure_html' => :'String',
|
95
98
|
:'created_on' => :'Object',
|
96
99
|
:'declined_on' => :'Object',
|
100
|
+
:'document_data' => :'DocumentData',
|
97
101
|
:'documents' => :'Array<Document>',
|
98
102
|
:'metadata' => :'String',
|
99
103
|
:'settings' => :'DisplaySettings',
|
@@ -148,6 +152,10 @@ module DocuSign_Click
|
|
148
152
|
self.declined_on = attributes[:'declinedOn']
|
149
153
|
end
|
150
154
|
|
155
|
+
if attributes.has_key?(:'documentData')
|
156
|
+
self.document_data = attributes[:'documentData']
|
157
|
+
end
|
158
|
+
|
151
159
|
if attributes.has_key?(:'documents')
|
152
160
|
if (value = attributes[:'documents']).is_a?(Array)
|
153
161
|
self.documents = value
|
@@ -206,6 +214,7 @@ module DocuSign_Click
|
|
206
214
|
consumer_disclosure_html == o.consumer_disclosure_html &&
|
207
215
|
created_on == o.created_on &&
|
208
216
|
declined_on == o.declined_on &&
|
217
|
+
document_data == o.document_data &&
|
209
218
|
documents == o.documents &&
|
210
219
|
metadata == o.metadata &&
|
211
220
|
settings == o.settings &&
|
@@ -224,7 +233,7 @@ module DocuSign_Click
|
|
224
233
|
# Calculates hash code according to all attributes.
|
225
234
|
# @return [Fixnum] Hash code
|
226
235
|
def hash
|
227
|
-
[account_id, agreed_on, agreement_id, agreement_url, clickwrap_id, client_user_id, consumer_disclosure_html, created_on, declined_on, documents, metadata, settings, status, version, version_id, version_number].hash
|
236
|
+
[account_id, agreed_on, agreement_id, agreement_url, clickwrap_id, client_user_id, consumer_disclosure_html, created_on, declined_on, document_data, documents, metadata, settings, status, version, version_id, version_number].hash
|
228
237
|
end
|
229
238
|
|
230
239
|
# Builds the object from hash
|
data/lib/docusign_click.rb
CHANGED
@@ -34,6 +34,7 @@ require 'docusign_click/models/clickwrap_versions_response'
|
|
34
34
|
require 'docusign_click/models/clickwraps_delete_response'
|
35
35
|
require 'docusign_click/models/display_settings'
|
36
36
|
require 'docusign_click/models/document'
|
37
|
+
require 'docusign_click/models/document_data'
|
37
38
|
require 'docusign_click/models/error_details'
|
38
39
|
require 'docusign_click/models/service_information'
|
39
40
|
require 'docusign_click/models/service_version'
|
data/runLinter.sh
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
./vendor/bundle/ruby/2.6.0/bin/rubocop -a
|
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.0.
|
4
|
+
version: 1.1.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- DocuSign
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jwt
|
@@ -34,22 +34,22 @@ dependencies:
|
|
34
34
|
name: addressable
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - ">="
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: 2.7.0
|
40
37
|
- - "~>"
|
41
38
|
- !ruby/object:Gem::Version
|
42
39
|
version: '2.7'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 2.7.0
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- - ">="
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: 2.7.0
|
50
47
|
- - "~>"
|
51
48
|
- !ruby/object:Gem::Version
|
52
49
|
version: '2.7'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 2.7.0
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: typhoeus
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
@@ -74,42 +74,82 @@ dependencies:
|
|
74
74
|
name: json
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
76
76
|
requirements:
|
77
|
-
- - ">="
|
78
|
-
- !ruby/object:Gem::Version
|
79
|
-
version: 2.1.0
|
80
77
|
- - "~>"
|
81
78
|
- !ruby/object:Gem::Version
|
82
79
|
version: '2.1'
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 2.1.0
|
83
83
|
type: :runtime
|
84
84
|
prerelease: false
|
85
85
|
version_requirements: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- - ">="
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: 2.1.0
|
90
87
|
- - "~>"
|
91
88
|
- !ruby/object:Gem::Version
|
92
89
|
version: '2.1'
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: 2.1.0
|
93
93
|
- !ruby/object:Gem::Dependency
|
94
|
-
name: rspec
|
94
|
+
name: rspec-mocks
|
95
95
|
requirement: !ruby/object:Gem::Requirement
|
96
96
|
requirements:
|
97
|
+
- - "~>"
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '3.8'
|
97
100
|
- - ">="
|
98
101
|
- !ruby/object:Gem::Version
|
99
|
-
version: 3.
|
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'
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: 3.8.0
|
113
|
+
- !ruby/object:Gem::Dependency
|
114
|
+
name: rspec-expectations
|
115
|
+
requirement: !ruby/object:Gem::Requirement
|
116
|
+
requirements:
|
100
117
|
- - "~>"
|
101
118
|
- !ruby/object:Gem::Version
|
102
|
-
version: '3.
|
119
|
+
version: '3.8'
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: 3.8.0
|
103
123
|
type: :development
|
104
124
|
prerelease: false
|
105
125
|
version_requirements: !ruby/object:Gem::Requirement
|
106
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'
|
107
140
|
- - ">="
|
108
141
|
- !ruby/object:Gem::Version
|
109
|
-
version: 3.
|
142
|
+
version: 3.4.0
|
143
|
+
type: :development
|
144
|
+
prerelease: false
|
145
|
+
version_requirements: !ruby/object:Gem::Requirement
|
146
|
+
requirements:
|
110
147
|
- - "~>"
|
111
148
|
- !ruby/object:Gem::Version
|
112
|
-
version: '3.
|
149
|
+
version: '3.4'
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 3.4.0
|
113
153
|
- !ruby/object:Gem::Dependency
|
114
154
|
name: vcr
|
115
155
|
requirement: !ruby/object:Gem::Requirement
|
@@ -219,7 +259,7 @@ dependencies:
|
|
219
259
|
version: '0.2'
|
220
260
|
- - ">="
|
221
261
|
- !ruby/object:Gem::Version
|
222
|
-
version: 0.2.
|
262
|
+
version: 0.2.11
|
223
263
|
type: :development
|
224
264
|
prerelease: false
|
225
265
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -229,7 +269,7 @@ dependencies:
|
|
229
269
|
version: '0.2'
|
230
270
|
- - ">="
|
231
271
|
- !ruby/object:Gem::Version
|
232
|
-
version: 0.2.
|
272
|
+
version: 0.2.11
|
233
273
|
description: The DocuSign package makes integrating DocuSign into your apps and websites
|
234
274
|
a super fast and painless process. The library is open sourced on GitHub, look for
|
235
275
|
the docusign-click-ruby-client repository.
|
@@ -241,22 +281,13 @@ extra_rdoc_files: []
|
|
241
281
|
files:
|
242
282
|
- CHANGELOG.md
|
243
283
|
- Gemfile
|
244
|
-
- Gemfile.lock
|
245
284
|
- LICENSE
|
246
285
|
- README.md
|
247
286
|
- Rakefile
|
248
|
-
- docusign_click-1.0.0.beta.gem
|
249
|
-
- docusign_click-1.0.0.beta2.gem
|
250
|
-
- docusign_click-1.0.0.pre.alpha.gem
|
251
|
-
- docusign_click-1.0.0.rc1.gem
|
252
287
|
- docusign_click.gemspec
|
253
288
|
- git_push.sh
|
254
|
-
- lib/.DS_Store
|
255
289
|
- lib/docusign_click.rb
|
256
|
-
- lib/docusign_click/.DS_Store
|
257
|
-
- lib/docusign_click/api/.DS_Store
|
258
290
|
- lib/docusign_click/api/accounts_api.rb
|
259
|
-
- lib/docusign_click/client/.DS_Store
|
260
291
|
- lib/docusign_click/client/api_client.rb
|
261
292
|
- lib/docusign_click/client/api_error.rb
|
262
293
|
- lib/docusign_click/client/auth/oauth.rb
|
@@ -279,6 +310,7 @@ files:
|
|
279
310
|
- lib/docusign_click/models/document.rb
|
280
311
|
- lib/docusign_click/models/document_conversion_request.rb
|
281
312
|
- lib/docusign_click/models/document_conversion_response.rb
|
313
|
+
- lib/docusign_click/models/document_data.rb
|
282
314
|
- lib/docusign_click/models/error_details.rb
|
283
315
|
- lib/docusign_click/models/html_result.rb
|
284
316
|
- lib/docusign_click/models/recipient_copy_request.rb
|
@@ -288,10 +320,9 @@ files:
|
|
288
320
|
- lib/docusign_click/models/user_agreement_request.rb
|
289
321
|
- lib/docusign_click/models/user_agreement_response.rb
|
290
322
|
- lib/docusign_click/version.rb
|
323
|
+
- runLinter.sh
|
291
324
|
- tests/Gemfile
|
292
|
-
- tests/Gemfile.lock
|
293
325
|
- tests/docs/Test.pdf
|
294
|
-
- tests/docs/private.pem
|
295
326
|
- tests/spec/unit_tests_using_jwt_spec.rb
|
296
327
|
homepage: https://github.com/docusign/docusign-click-ruby-client
|
297
328
|
licenses:
|
@@ -308,11 +339,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
308
339
|
version: '1.9'
|
309
340
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
310
341
|
requirements:
|
311
|
-
- - "
|
342
|
+
- - ">"
|
312
343
|
- !ruby/object:Gem::Version
|
313
|
-
version:
|
344
|
+
version: 1.3.1
|
314
345
|
requirements: []
|
315
|
-
|
346
|
+
rubyforge_project:
|
347
|
+
rubygems_version: 2.7.6
|
316
348
|
signing_key:
|
317
349
|
specification_version: 4
|
318
350
|
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
|
Binary file
|
Binary file
|
data/lib/.DS_Store
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|