echosign 1.0.2 → 1.5.0
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/.gitignore +2 -1
- data/.rubocop.yml +14 -0
- data/.rubocop_todo.yml +241 -0
- data/.simplecov +2 -0
- data/.travis.yml +9 -0
- data/Gemfile +3 -3
- data/Gemfile.lock +74 -48
- data/README.md +43 -8
- data/Rakefile +2 -2
- data/doc/Echosign.html +135 -0
- data/doc/Echosign/Agreement.html +545 -0
- data/doc/Echosign/Client.html +5365 -0
- data/doc/Echosign/CounterSignerInfo.html +267 -0
- data/doc/Echosign/Credentials.html +1053 -0
- data/doc/Echosign/Fileinfo.html +305 -0
- data/doc/Echosign/FormFieldLocation.html +264 -0
- data/doc/Echosign/MegaSign.html +533 -0
- data/doc/Echosign/ParameterError.html +124 -0
- data/doc/Echosign/PhoneInfo.html +281 -0
- data/doc/Echosign/Recipient.html +311 -0
- data/doc/Echosign/RecipientSecurityOption.html +296 -0
- data/doc/Echosign/Refresh.html +288 -0
- data/doc/Echosign/Reminder.html +279 -0
- data/doc/Echosign/Request.html +5289 -0
- data/doc/Echosign/Request/EndpointHash.html +328 -0
- data/doc/Echosign/Request/Failure.html +290 -0
- data/doc/Echosign/RequestFormField.html +244 -0
- data/doc/Echosign/RequiredParameterError.html +124 -0
- data/doc/Echosign/UrlFileInfo.html +297 -0
- data/doc/Echosign/User.html +422 -0
- data/doc/Echosign/Validatable.html +355 -0
- data/doc/Echosign/Widget.html +924 -0
- data/doc/Echosign/WidgetCompletionInfo.html +323 -0
- data/doc/Echosign/WidgetPersonalization.html +330 -0
- data/doc/Echosign/WidgetSecurityOption.html +361 -0
- data/doc/Echosign/WidgetSignerSecurityOption.html +298 -0
- data/doc/Echosign/WidgetStatus.html +316 -0
- data/doc/Echosign/WidgetVaultingInfo.html +267 -0
- data/doc/_index.html +378 -0
- data/doc/class_list.html +51 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +58 -0
- data/doc/css/style.css +496 -0
- data/doc/file.README.html +191 -0
- data/doc/file_list.html +56 -0
- data/doc/frames.html +17 -0
- data/doc/index.html +191 -0
- data/doc/js/app.js +292 -0
- data/doc/js/full_list.js +216 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +1035 -0
- data/doc/top-level-namespace.html +110 -0
- data/echosign.gemspec +18 -20
- data/features/support/env.rb +8 -8
- data/fixtures/vcr_cassettes/agreement_combined_pdf.yml +2 -2
- data/fixtures/vcr_cassettes/agreement_document_file.yml +1 -1
- data/fixtures/vcr_cassettes/agreement_documents.yml +2 -2
- data/fixtures/vcr_cassettes/agreement_form_data.yml +1 -1
- data/fixtures/vcr_cassettes/agreement_info.yml +1 -1
- data/fixtures/vcr_cassettes/agreement_signing_urls.yml +1 -1
- data/fixtures/vcr_cassettes/audit_trail_pdf.yml +1 -1
- data/fixtures/vcr_cassettes/cancel_agreement.yml +1 -1
- data/fixtures/vcr_cassettes/create_agreement.yml +1 -1
- data/fixtures/vcr_cassettes/create_reminder.yml +1 -1
- data/fixtures/vcr_cassettes/create_transient_document.yml +1 -1
- data/fixtures/vcr_cassettes/create_user.yml +1 -1
- data/fixtures/vcr_cassettes/create_widget.yml +1 -1
- data/fixtures/vcr_cassettes/get_agreements.yml +1 -1
- data/fixtures/vcr_cassettes/get_library_document.yml +1 -1
- data/fixtures/vcr_cassettes/get_library_document_data.yml +1 -1
- data/fixtures/vcr_cassettes/get_library_document_file.yml +1 -1
- data/fixtures/vcr_cassettes/get_library_documents.yml +1 -1
- data/fixtures/vcr_cassettes/get_token.yml +22 -20
- data/fixtures/vcr_cassettes/get_user.yml +1 -1
- data/fixtures/vcr_cassettes/get_users.yml +2 -2
- data/fixtures/vcr_cassettes/get_widget.yml +1 -1
- data/fixtures/vcr_cassettes/get_widget_document_file.yml +1 -1
- data/fixtures/vcr_cassettes/get_widget_documents.yml +1 -1
- data/fixtures/vcr_cassettes/get_widgets.yml +1 -1
- data/fixtures/vcr_cassettes/library_combined_document.yml +2 -2
- data/fixtures/vcr_cassettes/library_document_audit_trail.yml +1 -1
- data/fixtures/vcr_cassettes/personalize_widget.yml +1 -1
- data/fixtures/vcr_cassettes/refresh_token.yml +46 -0
- data/fixtures/vcr_cassettes/revoke_token.yml +44 -0
- data/fixtures/vcr_cassettes/update_widget_status.yml +1 -1
- data/lib/echosign.rb +11 -11
- data/lib/echosign/agreement.rb +26 -10
- data/lib/echosign/agreement/client.rb +111 -104
- data/lib/echosign/agreement/fileinfo.rb +1 -3
- data/lib/echosign/agreement/form_field_location.rb +2 -3
- data/lib/echosign/agreement/phone_info.rb +5 -5
- data/lib/echosign/agreement/recipient.rb +9 -8
- data/lib/echosign/agreement/recipient_security_option.rb +5 -4
- data/lib/echosign/agreement/request.rb +33 -43
- data/lib/echosign/agreement/request_form_field.rb +2 -3
- data/lib/echosign/agreement/url_file_info.rb +8 -6
- data/lib/echosign/client.rb +33 -24
- data/lib/echosign/credentials.rb +95 -24
- data/lib/echosign/library_documents/client.rb +18 -23
- data/lib/echosign/library_documents/request.rb +19 -20
- data/lib/echosign/mega_sign.rb +20 -10
- data/lib/echosign/mega_sign/client.rb +109 -104
- data/lib/echosign/mega_sign/request.rb +32 -43
- data/lib/echosign/refresh.rb +6 -10
- data/lib/echosign/reminder.rb +2 -2
- data/lib/echosign/request.rb +85 -75
- data/lib/echosign/user.rb +13 -7
- data/lib/echosign/validatable.rb +6 -10
- data/lib/echosign/version.rb +1 -1
- data/lib/echosign/widget.rb +53 -27
- data/lib/echosign/widget/client.rb +33 -36
- data/lib/echosign/widget/counter_signer_info.rb +4 -5
- data/lib/echosign/widget/request.rb +28 -52
- data/lib/echosign/widget/widget_completion_info.rb +22 -12
- data/lib/echosign/widget/widget_personalization.rb +9 -7
- data/lib/echosign/widget/widget_security_option.rb +21 -11
- data/lib/echosign/widget/widget_signer_security_option.rb +8 -6
- data/lib/echosign/widget/widget_status.rb +10 -8
- data/lib/echosign/widget/widget_vaulting_info.rb +4 -5
- data/spec/lib/agreement/client_spec.rb +25 -31
- data/spec/lib/client_spec.rb +15 -18
- data/spec/lib/credentials_spec.rb +48 -0
- data/spec/lib/library_documents/client_spec.rb +11 -15
- data/spec/lib/shared_client.rb +9 -16
- data/spec/lib/user_spec.rb +0 -2
- data/spec/lib/validatable_spec.rb +12 -18
- data/spec/lib/version_spec.rb +1 -1
- data/spec/lib/widget/client_spec.rb +46 -49
- data/spec/spec_helper.rb +12 -5
- metadata +125 -60
- data/spec/lib/request_spec.rb +0 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16d11d77c21ba4f4ddc39f30b2e1c0d160a7b53bea66b9d4c281872e6329552e
|
4
|
+
data.tar.gz: f09fe11cb8259034d7a7e6c0f802baffb67892032fcf735584dff4cc09042515
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f241ea15309193b334a23fde51909b12a02bb7679f337e0e241f39035ec803471459ce7e2eec9c0a5ee639341aa2481c7ce170cd715996ab6eb244a370b50f4c
|
7
|
+
data.tar.gz: f9fab680c4588eb94943659c3d8b2997ee360ef4d522956ca2a072ef5a895b6f9cc7fb076aa9837b53a7bee891b1b587071f2ed4f38ade1f557d0385db3e37da
|
data/.gitignore
CHANGED
data/.rubocop.yml
ADDED
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,241 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2018-10-12 12:08:53 -0700 using RuboCop version 0.59.2.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 5
|
10
|
+
Lint/IneffectiveAccessModifier:
|
11
|
+
Exclude:
|
12
|
+
- 'lib/echosign/request.rb'
|
13
|
+
|
14
|
+
# Offense count: 2
|
15
|
+
Lint/ParenthesesAsGroupedExpression:
|
16
|
+
Exclude:
|
17
|
+
- 'spec/lib/client_spec.rb'
|
18
|
+
|
19
|
+
# Offense count: 3
|
20
|
+
Lint/RescueException:
|
21
|
+
Exclude:
|
22
|
+
- 'lib/echosign/request.rb'
|
23
|
+
|
24
|
+
# Offense count: 1
|
25
|
+
# Cop supports --auto-correct.
|
26
|
+
# Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods.
|
27
|
+
Lint/UnusedMethodArgument:
|
28
|
+
Exclude:
|
29
|
+
- 'lib/echosign/widget/widget_completion_info.rb'
|
30
|
+
|
31
|
+
# Offense count: 1
|
32
|
+
# Configuration parameters: ContextCreatingMethods, MethodCreatingMethods.
|
33
|
+
Lint/UselessAccessModifier:
|
34
|
+
Exclude:
|
35
|
+
- 'lib/echosign/request.rb'
|
36
|
+
|
37
|
+
# Offense count: 17
|
38
|
+
Lint/UselessAssignment:
|
39
|
+
Exclude:
|
40
|
+
- 'lib/echosign/agreement/client.rb'
|
41
|
+
- 'lib/echosign/agreement/request.rb'
|
42
|
+
- 'lib/echosign/client.rb'
|
43
|
+
- 'lib/echosign/library_documents/request.rb'
|
44
|
+
- 'lib/echosign/mega_sign/client.rb'
|
45
|
+
- 'lib/echosign/mega_sign/request.rb'
|
46
|
+
- 'lib/echosign/request.rb'
|
47
|
+
- 'lib/echosign/widget/request.rb'
|
48
|
+
|
49
|
+
# Offense count: 8
|
50
|
+
# Configuration parameters: CountComments, ExcludedMethods.
|
51
|
+
# ExcludedMethods: refine
|
52
|
+
Metrics/BlockLength:
|
53
|
+
Max: 123
|
54
|
+
|
55
|
+
# Offense count: 3
|
56
|
+
# Configuration parameters: CountComments, ExcludedMethods.
|
57
|
+
Metrics/MethodLength:
|
58
|
+
Max: 11
|
59
|
+
|
60
|
+
# Offense count: 1
|
61
|
+
# Configuration parameters: CountComments.
|
62
|
+
Metrics/ModuleLength:
|
63
|
+
Max: 101
|
64
|
+
|
65
|
+
# Offense count: 6
|
66
|
+
# Configuration parameters: CountKeywordArgs.
|
67
|
+
Metrics/ParameterLists:
|
68
|
+
Max: 7
|
69
|
+
|
70
|
+
# Offense count: 2
|
71
|
+
Naming/AccessorMethodName:
|
72
|
+
Exclude:
|
73
|
+
- 'lib/echosign/agreement/client.rb'
|
74
|
+
- 'lib/echosign/mega_sign/client.rb'
|
75
|
+
|
76
|
+
# Offense count: 18
|
77
|
+
# Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
|
78
|
+
# AllowedNames: io, id, to, by, on, in, at, ip, db
|
79
|
+
Naming/UncommunicativeMethodParamName:
|
80
|
+
Exclude:
|
81
|
+
- 'lib/echosign/agreement/client.rb'
|
82
|
+
- 'lib/echosign/agreement/request.rb'
|
83
|
+
- 'lib/echosign/library_documents/client.rb'
|
84
|
+
- 'lib/echosign/library_documents/request.rb'
|
85
|
+
- 'lib/echosign/mega_sign/client.rb'
|
86
|
+
- 'lib/echosign/mega_sign/request.rb'
|
87
|
+
|
88
|
+
# Offense count: 18
|
89
|
+
# Configuration parameters: EnforcedStyle.
|
90
|
+
# SupportedStyles: snake_case, camelCase
|
91
|
+
Naming/VariableName:
|
92
|
+
Exclude:
|
93
|
+
- 'lib/echosign/agreement/client.rb'
|
94
|
+
- 'lib/echosign/agreement/request.rb'
|
95
|
+
- 'lib/echosign/library_documents/client.rb'
|
96
|
+
- 'lib/echosign/library_documents/request.rb'
|
97
|
+
- 'lib/echosign/mega_sign/client.rb'
|
98
|
+
- 'lib/echosign/mega_sign/request.rb'
|
99
|
+
|
100
|
+
# Offense count: 2
|
101
|
+
# Cop supports --auto-correct.
|
102
|
+
# Configuration parameters: EnforcedStyle, ProceduralMethods, FunctionalMethods, IgnoredMethods.
|
103
|
+
# SupportedStyles: line_count_based, semantic, braces_for_chaining
|
104
|
+
# ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
|
105
|
+
# FunctionalMethods: let, let!, subject, watch
|
106
|
+
# IgnoredMethods: lambda, proc, it
|
107
|
+
Style/BlockDelimiters:
|
108
|
+
Exclude:
|
109
|
+
- 'spec/lib/client_spec.rb'
|
110
|
+
- 'spec/lib/shared_client.rb'
|
111
|
+
|
112
|
+
# Offense count: 7
|
113
|
+
# Cop supports --auto-correct.
|
114
|
+
# Configuration parameters: EnforcedStyle.
|
115
|
+
# SupportedStyles: braces, no_braces, context_dependent
|
116
|
+
Style/BracesAroundHashParameters:
|
117
|
+
Exclude:
|
118
|
+
- 'lib/echosign/agreement.rb'
|
119
|
+
- 'lib/echosign/mega_sign.rb'
|
120
|
+
- 'lib/echosign/refresh.rb'
|
121
|
+
- 'lib/echosign/request.rb'
|
122
|
+
- 'lib/echosign/widget.rb'
|
123
|
+
- 'lib/echosign/widget/widget_completion_info.rb'
|
124
|
+
- 'spec/lib/agreement/client_spec.rb'
|
125
|
+
|
126
|
+
# Offense count: 5
|
127
|
+
# Cop supports --auto-correct.
|
128
|
+
# Configuration parameters: AutoCorrect, EnforcedStyle.
|
129
|
+
# SupportedStyles: nested, compact
|
130
|
+
Style/ClassAndModuleChildren:
|
131
|
+
Exclude:
|
132
|
+
- 'lib/echosign/agreement/request.rb'
|
133
|
+
- 'lib/echosign/library_documents/request.rb'
|
134
|
+
- 'lib/echosign/mega_sign/request.rb'
|
135
|
+
- 'lib/echosign/request.rb'
|
136
|
+
- 'lib/echosign/widget/request.rb'
|
137
|
+
|
138
|
+
# Offense count: 3
|
139
|
+
# Cop supports --auto-correct.
|
140
|
+
# Configuration parameters: Keywords.
|
141
|
+
# Keywords: TODO, FIXME, OPTIMIZE, HACK, REVIEW
|
142
|
+
Style/CommentAnnotation:
|
143
|
+
Exclude:
|
144
|
+
- 'lib/echosign/agreement.rb'
|
145
|
+
- 'lib/echosign/mega_sign.rb'
|
146
|
+
- 'lib/echosign/validatable.rb'
|
147
|
+
|
148
|
+
# Offense count: 9
|
149
|
+
Style/CommentedKeyword:
|
150
|
+
Exclude:
|
151
|
+
- 'lib/echosign/agreement.rb'
|
152
|
+
- 'lib/echosign/client.rb'
|
153
|
+
- 'lib/echosign/mega_sign.rb'
|
154
|
+
- 'lib/echosign/user.rb'
|
155
|
+
- 'spec/lib/client_spec.rb'
|
156
|
+
|
157
|
+
# Offense count: 35
|
158
|
+
Style/Documentation:
|
159
|
+
Enabled: false
|
160
|
+
|
161
|
+
# Offense count: 1
|
162
|
+
# Cop supports --auto-correct.
|
163
|
+
Style/LineEndConcatenation:
|
164
|
+
Exclude:
|
165
|
+
- 'lib/echosign/agreement.rb'
|
166
|
+
|
167
|
+
# Offense count: 1
|
168
|
+
# Cop supports --auto-correct.
|
169
|
+
# Configuration parameters: EnforcedStyle.
|
170
|
+
# SupportedStyles: require_parentheses, require_no_parentheses, require_no_parentheses_except_multiline
|
171
|
+
Style/MethodDefParentheses:
|
172
|
+
Exclude:
|
173
|
+
- 'lib/echosign/request.rb'
|
174
|
+
|
175
|
+
# Offense count: 8
|
176
|
+
# Cop supports --auto-correct.
|
177
|
+
Style/MutableConstant:
|
178
|
+
Exclude:
|
179
|
+
- 'lib/echosign/credentials.rb'
|
180
|
+
- 'lib/echosign/request.rb'
|
181
|
+
- 'lib/echosign/version.rb'
|
182
|
+
|
183
|
+
# Offense count: 1
|
184
|
+
# Cop supports --auto-correct.
|
185
|
+
# Configuration parameters: IncludeSemanticChanges.
|
186
|
+
Style/NonNilCheck:
|
187
|
+
Exclude:
|
188
|
+
- 'lib/echosign/credentials.rb'
|
189
|
+
|
190
|
+
# Offense count: 6
|
191
|
+
Style/OptionalArguments:
|
192
|
+
Exclude:
|
193
|
+
- 'lib/echosign/agreement.rb'
|
194
|
+
- 'lib/echosign/mega_sign.rb'
|
195
|
+
- 'lib/echosign/widget.rb'
|
196
|
+
|
197
|
+
# Offense count: 2
|
198
|
+
# Cop supports --auto-correct.
|
199
|
+
# Configuration parameters: EnforcedStyle.
|
200
|
+
# SupportedStyles: short, verbose
|
201
|
+
Style/PreferredHashMethods:
|
202
|
+
Exclude:
|
203
|
+
- 'lib/echosign/agreement.rb'
|
204
|
+
- 'lib/echosign/agreement/client.rb'
|
205
|
+
|
206
|
+
# Offense count: 3
|
207
|
+
# Cop supports --auto-correct.
|
208
|
+
Style/RedundantBegin:
|
209
|
+
Exclude:
|
210
|
+
- 'lib/echosign/request.rb'
|
211
|
+
- 'lib/echosign/validatable.rb'
|
212
|
+
|
213
|
+
# Offense count: 3
|
214
|
+
# Cop supports --auto-correct.
|
215
|
+
# Configuration parameters: AllowMultipleReturnValues.
|
216
|
+
Style/RedundantReturn:
|
217
|
+
Exclude:
|
218
|
+
- 'lib/echosign/credentials.rb'
|
219
|
+
|
220
|
+
# Offense count: 1
|
221
|
+
# Cop supports --auto-correct.
|
222
|
+
# Configuration parameters: EnforcedStyle.
|
223
|
+
# SupportedStyles: single_quotes, double_quotes
|
224
|
+
Style/StringLiteralsInInterpolation:
|
225
|
+
Exclude:
|
226
|
+
- 'lib/echosign/agreement.rb'
|
227
|
+
|
228
|
+
# Offense count: 2
|
229
|
+
# Cop supports --auto-correct.
|
230
|
+
# Configuration parameters: EnforcedStyleForMultiline.
|
231
|
+
# SupportedStylesForMultiline: comma, consistent_comma, no_comma
|
232
|
+
Style/TrailingCommaInHashLiteral:
|
233
|
+
Exclude:
|
234
|
+
- 'lib/echosign/request.rb'
|
235
|
+
- 'lib/echosign/widget/widget_completion_info.rb'
|
236
|
+
|
237
|
+
# Offense count: 1
|
238
|
+
# Cop supports --auto-correct.
|
239
|
+
Style/UnneededInterpolation:
|
240
|
+
Exclude:
|
241
|
+
- 'lib/echosign/widget/request.rb'
|
data/.simplecov
ADDED
data/.travis.yml
ADDED
data/Gemfile
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
source 'https://rubygems.org'
|
2
|
-
|
3
|
-
gemspec
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
gemspec
|
data/Gemfile.lock
CHANGED
@@ -1,52 +1,63 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
echosign (1.0
|
5
|
-
|
6
|
-
json
|
7
|
-
|
4
|
+
echosign (1.5.0)
|
5
|
+
httparty (~> 0.16)
|
6
|
+
json (~> 2)
|
7
|
+
oauth2 (~> 1)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
activesupport (
|
13
|
-
|
14
|
-
|
12
|
+
activesupport (5.2.1)
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
|
+
i18n (>= 0.7, < 2)
|
15
15
|
minitest (~> 5.1)
|
16
|
-
thread_safe (~> 0.1)
|
17
16
|
tzinfo (~> 1.1)
|
18
|
-
addressable (2.
|
17
|
+
addressable (2.5.2)
|
18
|
+
public_suffix (>= 2.0.2, < 4.0)
|
19
|
+
ast (2.4.0)
|
19
20
|
coderay (1.1.0)
|
20
|
-
|
21
|
+
concurrent-ruby (1.0.5)
|
22
|
+
crack (0.4.3)
|
21
23
|
safe_yaml (~> 1.0.0)
|
22
24
|
diff-lcs (1.2.5)
|
23
|
-
|
24
|
-
|
25
|
-
factory_girl (4.4.0)
|
25
|
+
docile (1.3.1)
|
26
|
+
factory_girl (4.8.1)
|
26
27
|
activesupport (>= 3.0.0)
|
27
|
-
faraday (0.
|
28
|
+
faraday (0.12.2)
|
28
29
|
multipart-post (>= 1.2, < 3)
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
json (1.
|
30
|
+
hashdiff (0.3.7)
|
31
|
+
httparty (0.16.2)
|
32
|
+
multi_xml (>= 0.5.2)
|
33
|
+
i18n (1.1.0)
|
34
|
+
concurrent-ruby (~> 1.0)
|
35
|
+
jaro_winkler (1.5.1)
|
36
|
+
json (2.1.0)
|
37
|
+
jwt (1.5.6)
|
36
38
|
method_source (0.8.2)
|
37
|
-
|
38
|
-
|
39
|
+
minitest (5.11.3)
|
40
|
+
multi_json (1.13.1)
|
41
|
+
multi_xml (0.6.0)
|
39
42
|
multipart-post (2.0.0)
|
40
|
-
|
43
|
+
oauth2 (1.4.0)
|
44
|
+
faraday (>= 0.8, < 0.13)
|
45
|
+
jwt (~> 1.0)
|
46
|
+
multi_json (~> 1.3)
|
47
|
+
multi_xml (~> 0.5)
|
48
|
+
rack (>= 1.2, < 3)
|
49
|
+
parallel (1.12.1)
|
50
|
+
parser (2.5.1.2)
|
51
|
+
ast (~> 2.4.0)
|
52
|
+
powerpack (0.1.2)
|
41
53
|
pry (0.10.0)
|
42
54
|
coderay (~> 1.1.0)
|
43
55
|
method_source (~> 0.8.1)
|
44
56
|
slop (~> 3.4)
|
57
|
+
public_suffix (3.0.3)
|
58
|
+
rack (2.0.5)
|
59
|
+
rainbow (3.0.0)
|
45
60
|
rake (10.3.2)
|
46
|
-
rest-client (1.8.0)
|
47
|
-
http-cookie (>= 1.0.2, < 2.0)
|
48
|
-
mime-types (>= 1.16, < 3.0)
|
49
|
-
netrc (~> 0.7)
|
50
61
|
rspec (3.0.0)
|
51
62
|
rspec-core (~> 3.0.0)
|
52
63
|
rspec-expectations (~> 3.0.0)
|
@@ -59,20 +70,32 @@ GEM
|
|
59
70
|
rspec-mocks (3.0.3)
|
60
71
|
rspec-support (~> 3.0.0)
|
61
72
|
rspec-support (3.0.3)
|
62
|
-
|
73
|
+
rubocop (0.59.2)
|
74
|
+
jaro_winkler (~> 1.5.1)
|
75
|
+
parallel (~> 1.10)
|
76
|
+
parser (>= 2.5, != 2.5.1.1)
|
77
|
+
powerpack (~> 0.1)
|
78
|
+
rainbow (>= 2.2.2, < 4.0)
|
79
|
+
ruby-progressbar (~> 1.7)
|
80
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
81
|
+
ruby-progressbar (1.10.0)
|
82
|
+
safe_yaml (1.0.4)
|
83
|
+
simplecov (0.16.1)
|
84
|
+
docile (~> 1.1)
|
85
|
+
json (>= 1.8, < 3)
|
86
|
+
simplecov-html (~> 0.10.0)
|
87
|
+
simplecov-html (0.10.2)
|
63
88
|
slop (3.6.0)
|
64
|
-
|
65
|
-
|
66
|
-
tzinfo (1.1.0)
|
89
|
+
thread_safe (0.3.6)
|
90
|
+
tzinfo (1.2.5)
|
67
91
|
thread_safe (~> 0.1)
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
webmock (1.17.4)
|
73
|
-
addressable (>= 2.2.7)
|
92
|
+
unicode-display_width (1.4.0)
|
93
|
+
vcr (4.0.0)
|
94
|
+
webmock (3.4.2)
|
95
|
+
addressable (>= 2.3.6)
|
74
96
|
crack (>= 0.3.2)
|
75
|
-
|
97
|
+
hashdiff
|
98
|
+
yard (0.9.16)
|
76
99
|
|
77
100
|
PLATFORMS
|
78
101
|
ruby
|
@@ -80,12 +103,15 @@ PLATFORMS
|
|
80
103
|
DEPENDENCIES
|
81
104
|
bundler (~> 1.6)
|
82
105
|
echosign!
|
83
|
-
factory_girl
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
vcr
|
90
|
-
webmock
|
91
|
-
yard
|
106
|
+
factory_girl (~> 4)
|
107
|
+
pry (~> 0.10)
|
108
|
+
rake (~> 10)
|
109
|
+
rspec (~> 3)
|
110
|
+
rubocop (~> 0.59)
|
111
|
+
simplecov (~> 0.16)
|
112
|
+
vcr (~> 4)
|
113
|
+
webmock (~> 3)
|
114
|
+
yard (~> 0.9)
|
115
|
+
|
116
|
+
BUNDLED WITH
|
117
|
+
1.16.6
|