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.
Files changed (132) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -1
  3. data/.rubocop.yml +14 -0
  4. data/.rubocop_todo.yml +241 -0
  5. data/.simplecov +2 -0
  6. data/.travis.yml +9 -0
  7. data/Gemfile +3 -3
  8. data/Gemfile.lock +74 -48
  9. data/README.md +43 -8
  10. data/Rakefile +2 -2
  11. data/doc/Echosign.html +135 -0
  12. data/doc/Echosign/Agreement.html +545 -0
  13. data/doc/Echosign/Client.html +5365 -0
  14. data/doc/Echosign/CounterSignerInfo.html +267 -0
  15. data/doc/Echosign/Credentials.html +1053 -0
  16. data/doc/Echosign/Fileinfo.html +305 -0
  17. data/doc/Echosign/FormFieldLocation.html +264 -0
  18. data/doc/Echosign/MegaSign.html +533 -0
  19. data/doc/Echosign/ParameterError.html +124 -0
  20. data/doc/Echosign/PhoneInfo.html +281 -0
  21. data/doc/Echosign/Recipient.html +311 -0
  22. data/doc/Echosign/RecipientSecurityOption.html +296 -0
  23. data/doc/Echosign/Refresh.html +288 -0
  24. data/doc/Echosign/Reminder.html +279 -0
  25. data/doc/Echosign/Request.html +5289 -0
  26. data/doc/Echosign/Request/EndpointHash.html +328 -0
  27. data/doc/Echosign/Request/Failure.html +290 -0
  28. data/doc/Echosign/RequestFormField.html +244 -0
  29. data/doc/Echosign/RequiredParameterError.html +124 -0
  30. data/doc/Echosign/UrlFileInfo.html +297 -0
  31. data/doc/Echosign/User.html +422 -0
  32. data/doc/Echosign/Validatable.html +355 -0
  33. data/doc/Echosign/Widget.html +924 -0
  34. data/doc/Echosign/WidgetCompletionInfo.html +323 -0
  35. data/doc/Echosign/WidgetPersonalization.html +330 -0
  36. data/doc/Echosign/WidgetSecurityOption.html +361 -0
  37. data/doc/Echosign/WidgetSignerSecurityOption.html +298 -0
  38. data/doc/Echosign/WidgetStatus.html +316 -0
  39. data/doc/Echosign/WidgetVaultingInfo.html +267 -0
  40. data/doc/_index.html +378 -0
  41. data/doc/class_list.html +51 -0
  42. data/doc/css/common.css +1 -0
  43. data/doc/css/full_list.css +58 -0
  44. data/doc/css/style.css +496 -0
  45. data/doc/file.README.html +191 -0
  46. data/doc/file_list.html +56 -0
  47. data/doc/frames.html +17 -0
  48. data/doc/index.html +191 -0
  49. data/doc/js/app.js +292 -0
  50. data/doc/js/full_list.js +216 -0
  51. data/doc/js/jquery.js +4 -0
  52. data/doc/method_list.html +1035 -0
  53. data/doc/top-level-namespace.html +110 -0
  54. data/echosign.gemspec +18 -20
  55. data/features/support/env.rb +8 -8
  56. data/fixtures/vcr_cassettes/agreement_combined_pdf.yml +2 -2
  57. data/fixtures/vcr_cassettes/agreement_document_file.yml +1 -1
  58. data/fixtures/vcr_cassettes/agreement_documents.yml +2 -2
  59. data/fixtures/vcr_cassettes/agreement_form_data.yml +1 -1
  60. data/fixtures/vcr_cassettes/agreement_info.yml +1 -1
  61. data/fixtures/vcr_cassettes/agreement_signing_urls.yml +1 -1
  62. data/fixtures/vcr_cassettes/audit_trail_pdf.yml +1 -1
  63. data/fixtures/vcr_cassettes/cancel_agreement.yml +1 -1
  64. data/fixtures/vcr_cassettes/create_agreement.yml +1 -1
  65. data/fixtures/vcr_cassettes/create_reminder.yml +1 -1
  66. data/fixtures/vcr_cassettes/create_transient_document.yml +1 -1
  67. data/fixtures/vcr_cassettes/create_user.yml +1 -1
  68. data/fixtures/vcr_cassettes/create_widget.yml +1 -1
  69. data/fixtures/vcr_cassettes/get_agreements.yml +1 -1
  70. data/fixtures/vcr_cassettes/get_library_document.yml +1 -1
  71. data/fixtures/vcr_cassettes/get_library_document_data.yml +1 -1
  72. data/fixtures/vcr_cassettes/get_library_document_file.yml +1 -1
  73. data/fixtures/vcr_cassettes/get_library_documents.yml +1 -1
  74. data/fixtures/vcr_cassettes/get_token.yml +22 -20
  75. data/fixtures/vcr_cassettes/get_user.yml +1 -1
  76. data/fixtures/vcr_cassettes/get_users.yml +2 -2
  77. data/fixtures/vcr_cassettes/get_widget.yml +1 -1
  78. data/fixtures/vcr_cassettes/get_widget_document_file.yml +1 -1
  79. data/fixtures/vcr_cassettes/get_widget_documents.yml +1 -1
  80. data/fixtures/vcr_cassettes/get_widgets.yml +1 -1
  81. data/fixtures/vcr_cassettes/library_combined_document.yml +2 -2
  82. data/fixtures/vcr_cassettes/library_document_audit_trail.yml +1 -1
  83. data/fixtures/vcr_cassettes/personalize_widget.yml +1 -1
  84. data/fixtures/vcr_cassettes/refresh_token.yml +46 -0
  85. data/fixtures/vcr_cassettes/revoke_token.yml +44 -0
  86. data/fixtures/vcr_cassettes/update_widget_status.yml +1 -1
  87. data/lib/echosign.rb +11 -11
  88. data/lib/echosign/agreement.rb +26 -10
  89. data/lib/echosign/agreement/client.rb +111 -104
  90. data/lib/echosign/agreement/fileinfo.rb +1 -3
  91. data/lib/echosign/agreement/form_field_location.rb +2 -3
  92. data/lib/echosign/agreement/phone_info.rb +5 -5
  93. data/lib/echosign/agreement/recipient.rb +9 -8
  94. data/lib/echosign/agreement/recipient_security_option.rb +5 -4
  95. data/lib/echosign/agreement/request.rb +33 -43
  96. data/lib/echosign/agreement/request_form_field.rb +2 -3
  97. data/lib/echosign/agreement/url_file_info.rb +8 -6
  98. data/lib/echosign/client.rb +33 -24
  99. data/lib/echosign/credentials.rb +95 -24
  100. data/lib/echosign/library_documents/client.rb +18 -23
  101. data/lib/echosign/library_documents/request.rb +19 -20
  102. data/lib/echosign/mega_sign.rb +20 -10
  103. data/lib/echosign/mega_sign/client.rb +109 -104
  104. data/lib/echosign/mega_sign/request.rb +32 -43
  105. data/lib/echosign/refresh.rb +6 -10
  106. data/lib/echosign/reminder.rb +2 -2
  107. data/lib/echosign/request.rb +85 -75
  108. data/lib/echosign/user.rb +13 -7
  109. data/lib/echosign/validatable.rb +6 -10
  110. data/lib/echosign/version.rb +1 -1
  111. data/lib/echosign/widget.rb +53 -27
  112. data/lib/echosign/widget/client.rb +33 -36
  113. data/lib/echosign/widget/counter_signer_info.rb +4 -5
  114. data/lib/echosign/widget/request.rb +28 -52
  115. data/lib/echosign/widget/widget_completion_info.rb +22 -12
  116. data/lib/echosign/widget/widget_personalization.rb +9 -7
  117. data/lib/echosign/widget/widget_security_option.rb +21 -11
  118. data/lib/echosign/widget/widget_signer_security_option.rb +8 -6
  119. data/lib/echosign/widget/widget_status.rb +10 -8
  120. data/lib/echosign/widget/widget_vaulting_info.rb +4 -5
  121. data/spec/lib/agreement/client_spec.rb +25 -31
  122. data/spec/lib/client_spec.rb +15 -18
  123. data/spec/lib/credentials_spec.rb +48 -0
  124. data/spec/lib/library_documents/client_spec.rb +11 -15
  125. data/spec/lib/shared_client.rb +9 -16
  126. data/spec/lib/user_spec.rb +0 -2
  127. data/spec/lib/validatable_spec.rb +12 -18
  128. data/spec/lib/version_spec.rb +1 -1
  129. data/spec/lib/widget/client_spec.rb +46 -49
  130. data/spec/spec_helper.rb +12 -5
  131. metadata +125 -60
  132. data/spec/lib/request_spec.rb +0 -18
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 202e9930e718ba31845acebe5831337651431d5eb378ee8a224d72179a2f9b09
4
- data.tar.gz: 352e66a10fcf093aaa8739ef5b8b31c11d23446eac696fc4f24eb91d5588b8d4
3
+ metadata.gz: 16d11d77c21ba4f4ddc39f30b2e1c0d160a7b53bea66b9d4c281872e6329552e
4
+ data.tar.gz: f09fe11cb8259034d7a7e6c0f802baffb67892032fcf735584dff4cc09042515
5
5
  SHA512:
6
- metadata.gz: ba28097c90404ce106773f8ba9ef610a6afe16b2424d47db94bcced0eaa29868197b976ce1fb65722e6343d8f6fcde7e09649a2b09d603917a5d5213923bd226
7
- data.tar.gz: ceed0ecd03654266aa916f93d84ea71fdbce9971c20fb97ddf6bfa00bf95072eb5699a61fed833bd8eb85a1961928b96da2367f81ba23eb61636cc87906f0cf3
6
+ metadata.gz: f241ea15309193b334a23fde51909b12a02bb7679f337e0e241f39035ec803471459ce7e2eec9c0a5ee639341aa2481c7ce170cd715996ab6eb244a370b50f4c
7
+ data.tar.gz: f9fab680c4588eb94943659c3d8b2997ee360ef4d522956ca2a072ef5a895b6f9cc7fb076aa9837b53a7bee891b1b587071f2ed4f38ade1f557d0385db3e37da
data/.gitignore CHANGED
@@ -1,4 +1,5 @@
1
1
  *swp
2
2
  .yardoc
3
3
  .yardoc/*
4
- .DS_Store
4
+ .DS_Store
5
+ coverage/
@@ -0,0 +1,14 @@
1
+ inherit_from: .rubocop_todo.yml
2
+
3
+ AllCops:
4
+ DisplayStyleGuide: true
5
+ ExtraDetails: true
6
+
7
+ Metrics/LineLength:
8
+ Max: 120
9
+
10
+ Style/StringLiterals:
11
+ Enabled: false
12
+
13
+ Style/SymbolArray:
14
+ EnforcedStyle: brackets
@@ -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'
@@ -0,0 +1,2 @@
1
+ SimpleCov.minimum_coverage_by_file 50
2
+ SimpleCov.minimum_coverage 84
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ rvm:
3
+ - ruby-head
4
+ - 2.5
5
+ - 2.4
6
+ - 2.3
7
+ script:
8
+ - bundle exec rubocop --fail-fast
9
+ - bundle exec rake
data/Gemfile CHANGED
@@ -1,3 +1,3 @@
1
- source 'https://rubygems.org'
2
-
3
- gemspec
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -1,52 +1,63 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- echosign (1.0.1)
5
- faraday
6
- json
7
- rest-client
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 (4.1.0)
13
- i18n (~> 0.6, >= 0.6.9)
14
- json (~> 1.7, >= 1.7.7)
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.3.6)
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
- crack (0.4.2)
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
- domain_name (0.5.24)
24
- unf (>= 0.0.5, < 1.0.0)
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.9.1)
28
+ faraday (0.12.2)
28
29
  multipart-post (>= 1.2, < 3)
29
- highline (1.6.21)
30
- hitch (1.0.2)
31
- highline (>= 1.6.2)
32
- http-cookie (1.0.2)
33
- domain_name (~> 0.5)
34
- i18n (0.6.11)
35
- json (1.8.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
- mime-types (2.5)
38
- minitest (5.3.3)
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
- netrc (0.10.3)
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
- safe_yaml (1.0.1)
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
- syck (1.0.5)
65
- thread_safe (0.3.3)
66
- tzinfo (1.1.0)
89
+ thread_safe (0.3.6)
90
+ tzinfo (1.2.5)
67
91
  thread_safe (~> 0.1)
68
- unf (0.1.4)
69
- unf_ext
70
- unf_ext (0.0.7.1)
71
- vcr (2.8.0)
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
- yard (0.8.7.4)
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
- hitch
85
- pry
86
- rake
87
- rspec
88
- syck
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