rest-client 1.8.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +2 -0
  3. data/.mailmap +10 -0
  4. data/.rspec +2 -1
  5. data/.rubocop +2 -0
  6. data/.rubocop-disables.yml +386 -0
  7. data/.rubocop.yml +8 -0
  8. data/.travis.yml +56 -8
  9. data/AUTHORS +26 -1
  10. data/README.md +901 -0
  11. data/Rakefile +27 -3
  12. data/bin/restclient +3 -5
  13. data/history.md +181 -0
  14. data/lib/restclient/abstract_response.rb +172 -55
  15. data/lib/restclient/exceptions.rb +96 -55
  16. data/lib/restclient/params_array.rb +72 -0
  17. data/lib/restclient/payload.rb +70 -74
  18. data/lib/restclient/platform.rb +19 -0
  19. data/lib/restclient/raw_response.rb +21 -7
  20. data/lib/restclient/request.rb +540 -281
  21. data/lib/restclient/resource.rb +19 -9
  22. data/lib/restclient/response.rb +75 -6
  23. data/lib/restclient/utils.rb +274 -0
  24. data/lib/restclient/version.rb +2 -1
  25. data/lib/restclient.rb +21 -3
  26. data/rest-client.gemspec +12 -10
  27. data/spec/ISS.jpg +0 -0
  28. data/spec/helpers.rb +54 -0
  29. data/spec/integration/_lib.rb +1 -0
  30. data/spec/integration/capath_digicert/3513523f.0 +22 -0
  31. data/spec/integration/capath_digicert/399e7759.0 +22 -0
  32. data/spec/integration/capath_digicert/digicert.crt +20 -17
  33. data/spec/integration/certs/digicert.crt +20 -17
  34. data/spec/integration/httpbin_spec.rb +128 -0
  35. data/spec/integration/integration_spec.rb +97 -14
  36. data/spec/integration/request_spec.rb +25 -2
  37. data/spec/spec_helper.rb +28 -1
  38. data/spec/unit/_lib.rb +1 -0
  39. data/spec/unit/abstract_response_spec.rb +95 -38
  40. data/spec/unit/exceptions_spec.rb +41 -28
  41. data/spec/unit/params_array_spec.rb +36 -0
  42. data/spec/unit/payload_spec.rb +118 -68
  43. data/spec/unit/raw_response_spec.rb +10 -6
  44. data/spec/unit/request2_spec.rb +34 -12
  45. data/spec/unit/request_spec.rb +745 -424
  46. data/spec/unit/resource_spec.rb +31 -27
  47. data/spec/unit/response_spec.rb +134 -57
  48. data/spec/unit/restclient_spec.rb +16 -15
  49. data/spec/unit/utils_spec.rb +147 -0
  50. data/spec/unit/windows/root_certs_spec.rb +3 -3
  51. metadata +79 -29
  52. data/README.rdoc +0 -324
  53. data/spec/integration/capath_digicert/244b5494.0 +0 -19
  54. data/spec/integration/capath_digicert/81b9768f.0 +0 -19
  55. data/spec/unit/master_shake.jpg +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 683937d317980acfcfcfbc94eb76f2566ed3bf92
4
- data.tar.gz: fa2f669653292404bc814fb436c17755060a75a6
2
+ SHA256:
3
+ metadata.gz: e61fb064d966989b00da05fc3e16e3c389cebb68de302d1436e9e2be10dbef8c
4
+ data.tar.gz: fa5deab3c8c4a44e2d5478e212dd24221d37812f818d4e8cb63e65ebafd8e85c
5
5
  SHA512:
6
- metadata.gz: c57e29fbfe2e0bb92cf1556e38438171c04739dc6499098c651021c3e797e7724aa12b70f552d4ad43fe78f7e30d20eeea4b94e29dacb7122d936a253d1d8b98
7
- data.tar.gz: 234257c6569615bc71b4642c7d2f4850b79bbe5eefc3afc8b62eb899023d3a1e12fd3e81366c356817217b50899c7357fd6a9d16f59819c2ca3a1c0b55e9f480
6
+ metadata.gz: ca5026c1f26f1c465c0e2ed869c1a6f6f0dc3b229843d972f9c0267d2f25e98565a672a91b899796d5494391bac73b35d3f36782f0b4afdade1b4d525e09307a
7
+ data.tar.gz: 8ce3970ab67e95e68cfce154ed6865285f04f0e493c694a7014dee54901a9d64759299bf43c542ce23baf05e15676c9daebd5fa4c53703891cdf179a6a0cf769
data/.gitignore CHANGED
@@ -5,3 +5,5 @@
5
5
  /doc
6
6
  /pkg
7
7
  /rdoc
8
+ /.yardoc
9
+ /tmp
data/.mailmap ADDED
@@ -0,0 +1,10 @@
1
+ Blake Mizerany <blake.mizerany@gmail.com>
2
+ Lawrence Leonard Gilbert <larry@l2g.to>
3
+ <larry@l2g.to> <larry@L2G.to>
4
+ Marc-André Cournoyer <macournoyer@gmail.com>
5
+ Matthew Manning <matt.manning@gmail.com>
6
+ Nicholas Wieland <nicholas.wieland@gmail.com>
7
+ Rafael Ssouza <rafael.ssouza@gmail.com>
8
+ Richard Schneeman <richard.schneeman@gmail.com>
9
+ Rick Olson <technoweenie@gmail.com>
10
+ T. Watanabe <wtnabe@wt-srv.watanabe>
data/.rspec CHANGED
@@ -1 +1,2 @@
1
- --colour --format progress --order random
1
+ --color
2
+ --format progress
data/.rubocop ADDED
@@ -0,0 +1,2 @@
1
+ --display-cop-names
2
+ --fail-level=W
@@ -0,0 +1,386 @@
1
+ # This configuration was generated by `rubocop --auto-gen-config`
2
+ # on 2014-07-08 08:57:44 +0000 using RuboCop version 0.24.1.
3
+ # The point is for the user to remove these configuration records
4
+ # one by one as the offenses are removed from the code base.
5
+ # Note that changes in the inspected code, or installation of new
6
+ # versions of RuboCop, may require this file to be generated again.
7
+
8
+ # TODO
9
+ # Offense count: 1
10
+ # Cop supports --auto-correct.
11
+ Lint/StringConversionInInterpolation:
12
+ Enabled: false
13
+
14
+ # Tests only
15
+ # Offense count: 16
16
+ # Cop supports --auto-correct.
17
+ Lint/UnusedBlockArgument:
18
+ Enabled: false
19
+
20
+ Security/Eval:
21
+ Exclude:
22
+ - rest-client.windows.gemspec
23
+
24
+ Lint/HandleExceptions:
25
+ Exclude:
26
+ - lib/restclient/utils.rb
27
+
28
+ Lint/UselessAccessModifier:
29
+ Exclude:
30
+ - lib/restclient/windows/root_certs.rb
31
+
32
+ # Offense count: 4
33
+ # Cop supports --auto-correct.
34
+ Style/Alias:
35
+ Enabled: false
36
+
37
+ # TODO
38
+ # Offense count: 3
39
+ # Cop supports --auto-correct.
40
+ Style/AndOr:
41
+ Enabled: false
42
+
43
+ # TODO
44
+ # Offense count: 3
45
+ # Cop supports --auto-correct.
46
+ Style/BlockDelimiters:
47
+ Enabled: false
48
+
49
+ # Offense count: 48
50
+ # Cop supports --auto-correct.
51
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
52
+ Style/BracesAroundHashParameters:
53
+ Enabled: false
54
+
55
+ # Offense count: 1
56
+ Naming/ClassAndModuleCamelCase:
57
+ Exclude:
58
+ - lib/restclient/windows/root_certs.rb
59
+
60
+ # Offense count: 2
61
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
62
+ Style/ClassAndModuleChildren:
63
+ Enabled: false
64
+
65
+ # TODO?
66
+ # Offense count: 14
67
+ Metrics/AbcSize:
68
+ Max: 75
69
+
70
+ # TODO?
71
+ Metrics/MethodLength:
72
+ Max: 66
73
+
74
+ # TODO?
75
+ # Offense count: 4
76
+ Metrics/PerceivedComplexity:
77
+ Max: 24
78
+
79
+ # Offense count: 1
80
+ # Configuration parameters: CountComments.
81
+ Metrics/ClassLength:
82
+ Max: 411
83
+
84
+ # TODO
85
+ # Offense count: 5
86
+ Style/ClassVars:
87
+ Enabled: false
88
+
89
+ # TODO
90
+ # Offense count: 5
91
+ # Cop supports --auto-correct.
92
+ # Configuration parameters: PreferredMethods.
93
+ Style/CollectionMethods:
94
+ Enabled: false
95
+
96
+ # TODO
97
+ # Offense count: 4
98
+ # Cop supports --auto-correct.
99
+ Style/ColonMethodCall:
100
+ Enabled: false
101
+
102
+ Style/ConditionalAssignment:
103
+ EnforcedStyle: assign_inside_condition
104
+
105
+ # Offense count: 2
106
+ Naming/ConstantName:
107
+ Enabled: false
108
+
109
+ # TODO: eh?
110
+ # Offense count: 4
111
+ Metrics/CyclomaticComplexity:
112
+ Max: 22
113
+
114
+ Style/PreferredHashMethods:
115
+ EnforcedStyle: verbose
116
+
117
+ # TODO: docs
118
+ # Offense count: 17
119
+ Style/Documentation:
120
+ Enabled: false
121
+
122
+ # Offense count: 9
123
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
124
+ Layout/DotPosition:
125
+ Enabled: false
126
+
127
+ # Offense count: 1
128
+ Style/DoubleNegation:
129
+ Enabled: false
130
+
131
+ # TODO
132
+ # Offense count: 2
133
+ Style/EachWithObject:
134
+ Enabled: false
135
+
136
+ # Offense count: 5
137
+ # Cop supports --auto-correct.
138
+ Layout/EmptyLines:
139
+ Enabled: false
140
+
141
+ # Offense count: 11
142
+ # Cop supports --auto-correct.
143
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
144
+ Layout/EmptyLinesAroundClassBody:
145
+ Enabled: false
146
+
147
+ # Offense count: 1
148
+ # Cop supports --auto-correct.
149
+ Layout/EmptyLinesAroundMethodBody:
150
+ Enabled: false
151
+
152
+ # Offense count: 9
153
+ # Cop supports --auto-correct.
154
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
155
+ Layout/EmptyLinesAroundModuleBody:
156
+ Enabled: false
157
+
158
+ Layout/EmptyLinesAroundExceptionHandlingKeywords:
159
+ Enabled: false
160
+
161
+ # Offense count: 31
162
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
163
+ Style/Encoding:
164
+ Enabled: false
165
+
166
+ Naming/FileName:
167
+ Exclude:
168
+ - lib/rest-client.rb
169
+
170
+ # Offense count: 3
171
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
172
+ Style/FormatString:
173
+ Enabled: false
174
+
175
+ # TODO: enable
176
+ # Cop supports --auto-correct.
177
+ # Configuration parameters: SupportedStyles.
178
+ Style/HashSyntax:
179
+ Enabled: false
180
+
181
+ # NOTABUG
182
+ # Offense count: 8
183
+ # Configuration parameters: MaxLineLength.
184
+ Style/IfUnlessModifier:
185
+ Enabled: false
186
+
187
+ Layout/IndentFirstHashElement:
188
+ Exclude:
189
+ - 'spec/**/*.rb'
190
+
191
+ # NOTABUG
192
+ # Offense count: 19
193
+ Style/Lambda:
194
+ Enabled: false
195
+
196
+ # TODO
197
+ # Offense count: 14
198
+ # Cop supports --auto-correct.
199
+ Layout/LeadingCommentSpace:
200
+ Enabled: false
201
+
202
+ Metrics/LineLength:
203
+ Exclude:
204
+ - 'spec/**/*.rb'
205
+ - 'Rakefile'
206
+
207
+ # TODO
208
+ # Offense count: 28
209
+ # Cop supports --auto-correct.
210
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
211
+ Style/MethodDefParentheses:
212
+ Enabled: false
213
+
214
+ # TODO
215
+ # Offense count: 1
216
+ Style/ModuleFunction:
217
+ Enabled: false
218
+
219
+ # Offense count: 4
220
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
221
+ Style/Next:
222
+ Enabled: false
223
+
224
+ # Offense count: 1
225
+ # Cop supports --auto-correct.
226
+ # Configuration parameters: IncludeSemanticChanges.
227
+ Style/NonNilCheck:
228
+ Enabled: false
229
+
230
+ # TODO: exclude
231
+ # Offense count: 1
232
+ # Cop supports --auto-correct.
233
+ Style/Not:
234
+ Enabled: false
235
+
236
+ # Offense count: 2
237
+ # Cop supports --auto-correct.
238
+ Style/NumericLiterals:
239
+ MinDigits: 11
240
+
241
+ # TODO?
242
+ # Offense count: 1
243
+ # Cop supports --auto-correct.
244
+ # Configuration parameters: AllowSafeAssignment.
245
+ Style/ParenthesesAroundCondition:
246
+ Enabled: false
247
+
248
+ # Offense count: 8
249
+ # Cop supports --auto-correct.
250
+ # Configuration parameters: PreferredDelimiters.
251
+ Style/PercentLiteralDelimiters:
252
+ PreferredDelimiters:
253
+ '%w': '{}'
254
+ '%W': '{}'
255
+ '%Q': '{}'
256
+ Exclude:
257
+ - 'bin/restclient'
258
+
259
+ # Offense count: 3
260
+ # Configuration parameters: NamePrefixBlacklist.
261
+ Naming/PredicateName:
262
+ Enabled: false
263
+
264
+ # TODO: configure
265
+ # Offense count: 3
266
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
267
+ Style/RaiseArgs:
268
+ Enabled: false
269
+
270
+ # TODO
271
+ # Offense count: 1
272
+ # Cop supports --auto-correct.
273
+ Style/RedundantBegin:
274
+ Enabled: false
275
+
276
+ # Offense count: 2
277
+ # Cop supports --auto-correct.
278
+ Style/RedundantSelf:
279
+ Enabled: false
280
+
281
+ # Offense count: 1
282
+ Style/RescueModifier:
283
+ Enabled: false
284
+ Exclude:
285
+ - 'bin/restclient'
286
+
287
+ # TODO: configure
288
+ # Offense count: 12
289
+ # Cop supports --auto-correct.
290
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
291
+ Style/SignalException:
292
+ Enabled: false
293
+
294
+ # TODO
295
+ # Offense count: 2
296
+ # Cop supports --auto-correct.
297
+ Layout/SpaceAfterNot:
298
+ Enabled: false
299
+
300
+ # Offense count: 19
301
+ # Cop supports --auto-correct.
302
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
303
+ Layout/SpaceAroundEqualsInParameterDefault:
304
+ Enabled: false
305
+
306
+ # Offense count: 20
307
+ # Cop supports --auto-correct.
308
+ Layout/SpaceAroundOperators:
309
+ Enabled: false
310
+
311
+ # Offense count: 9
312
+ # Cop supports --auto-correct.
313
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
314
+ Layout/SpaceBeforeBlockBraces:
315
+ Enabled: false
316
+
317
+ Layout/EmptyLinesAroundBlockBody:
318
+ Enabled: false
319
+
320
+ # Offense count: 37
321
+ # Cop supports --auto-correct.
322
+ # Configuration parameters: EnforcedStyle, SupportedStyles, EnforcedStyleForEmptyBraces, SpaceBeforeBlockParameters.
323
+ Layout/SpaceInsideBlockBraces:
324
+ Enabled: false
325
+
326
+ # Offense count: 181
327
+ # Cop supports --auto-correct.
328
+ # Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces, SupportedStyles.
329
+ Layout/SpaceInsideHashLiteralBraces:
330
+ Enabled: false
331
+
332
+ # TODO
333
+ # Offense count: 9
334
+ # Cop supports --auto-correct.
335
+ Layout/SpaceInsideParens:
336
+ Enabled: false
337
+
338
+ # Offense count: 414
339
+ # Cop supports --auto-correct.
340
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
341
+ Style/StringLiterals:
342
+ Enabled: false
343
+
344
+ Style/TrailingCommaInArrayLiteral:
345
+ EnforcedStyleForMultiline: consistent_comma
346
+ Style/TrailingCommaInHashLiteral:
347
+ EnforcedStyleForMultiline: consistent_comma
348
+ Style/TrailingCommaInArguments:
349
+ Enabled: false
350
+
351
+ # TODO: configure
352
+ # Offense count: 1
353
+ # Cop supports --auto-correct.
354
+ # Configuration parameters: ExactNameMatch, AllowPredicates, AllowDSLWriters, Whitelist.
355
+ Style/TrivialAccessors:
356
+ Enabled: false
357
+ Exclude: ['lib/restclient/payload.rb']
358
+
359
+ # TODO?
360
+ # Offense count: 3
361
+ Style/UnlessElse:
362
+ Enabled: false
363
+
364
+ # TODO?
365
+ # Offense count: 6
366
+ # Cop supports --auto-correct.
367
+ Style/UnneededPercentQ:
368
+ Enabled: false
369
+
370
+ # Offense count: 5
371
+ # Cop supports --auto-correct.
372
+ Style/WordArray:
373
+ MinSize: 4
374
+
375
+ # TODO?
376
+ # Offense count: 5
377
+ # Cop supports --auto-correct.
378
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
379
+ Style/BarePercentLiterals:
380
+ Enabled: false
381
+
382
+
383
+ Style/RescueStandardError:
384
+ Exclude:
385
+ - 'bin/restclient'
386
+ - 'lib/restclient/windows/root_certs.rb'
data/.rubocop.yml ADDED
@@ -0,0 +1,8 @@
1
+ ---
2
+ inherit_from:
3
+ - .rubocop-disables.yml
4
+
5
+ AllCops:
6
+ Exclude:
7
+ - 'tmp/*.rb'
8
+ - 'vendor/**/*'
data/.travis.yml CHANGED
@@ -1,14 +1,62 @@
1
+ # Available ruby versions: http://rubies.travis-ci.org/
2
+
1
3
  language: ruby
4
+ sudo: false
5
+
6
+ os:
7
+ - linux
8
+ # - osx
9
+
2
10
  rvm:
3
- - "1.9.2"
4
- - "1.9.3"
5
- - "2.0.0"
6
- # Forgo 2.1.0 until Travis has a satisfactory fix for
7
- # https://github.com/travis-ci/travis-ci/issues/2220
8
- - "2.1" # always the latest 2.1.x
9
- - "jruby-19mode"
11
+ - "2.1" # latest 2.1.x
12
+ - "2.2.10"
13
+ - "2.3.8"
14
+ - "2.4.6"
15
+ - "2.5.5"
16
+ - "2.6.3"
17
+ - "ruby-head"
18
+ - "jruby-9.1.9.0"
19
+ - "jruby-head"
20
+
21
+ cache: bundler
22
+
10
23
  script:
11
- bundle exec rake test
24
+ - bundle exec rake test
25
+ - bundle exec rake rubocop
26
+
12
27
  branches:
13
28
  except:
14
29
  - "readme-edits"
30
+
31
+ before_install:
32
+ # Install rubygems < 3.0 so that we can support ruby < 2.3
33
+ # https://github.com/rubygems/rubygems/issues/2534
34
+ - gem install rubygems-update -v '<3' && update_rubygems
35
+ # bundler installation needed for jruby-head
36
+ # https://github.com/travis-ci/travis-ci/issues/5861
37
+ # stick to bundler 1.x in order to support ruby < 2.3
38
+ - gem install bundler -v '~> 1.17'
39
+
40
+ # Travis macOS support is pretty janky. These are some hacks to include tests
41
+ # only on versions that actually work. We test on macOS because Apple monkey
42
+ # patches OpenSSL to have different behavior, and we want to ensure that SSL
43
+ # verification at least is broken in the expected ways on macOS.
44
+ # (last tested: 2019-08)
45
+ matrix:
46
+ # exclude: {}
47
+ include:
48
+ # test only a few versions on mac
49
+ - os: osx
50
+ rvm: 2.6.3
51
+ - os: osx
52
+ rvm: ruby-head
53
+ - os: osx
54
+ rvm: jruby-9.1.9.0
55
+ - os: osx
56
+ rvm: jruby-head
57
+
58
+ allow_failures:
59
+ - rvm: 'ruby-head'
60
+
61
+ # return results as soon as mandatory versions are done
62
+ fast_finish: true
data/AUTHORS CHANGED
@@ -3,8 +3,11 @@ the following kind souls:
3
3
 
4
4
  Adam Jacob
5
5
  Adam Wiggins
6
+ Adrian Rangel
7
+ Alex Tomlins
6
8
  Aman Gupta
7
9
  Andy Brody
10
+ Avi Deitcher
8
11
  Blake Mizerany
9
12
  Brad Ediger
10
13
  Braintree
@@ -17,12 +20,15 @@ Coda Hale
17
20
  Crawford
18
21
  Cyril Rohr
19
22
  Dan Mayer
23
+ Dario Hamidi
24
+ Darren Coxall
20
25
  David Backeus
21
26
  David Perkowski
22
27
  Dmitri Dolguikh
23
28
  Dusty Doris
24
29
  Dylan Egan
25
30
  El Draper
31
+ Evan Broder
26
32
  Evan Smith
27
33
  François Beausoleil
28
34
  Gabriele Cirulli
@@ -33,49 +39,68 @@ Harm Aarts
33
39
  Hiro Asari
34
40
  Hugh McGowan
35
41
  Ian Warshak
42
+ Igor Zubkov
36
43
  Ivan Makfinsky
37
44
  JH. Chabran
38
45
  James Edward Gray II
39
46
  Jari Bakken
47
+ Jeff Pereira
40
48
  Jeff Remer
41
49
  Jeffrey Hardy
42
50
  Jeremy Kemper
51
+ Joe Rafaniello
43
52
  John Barnette
44
53
  Jon Rowe
45
54
  Jordi Massaguer Pla
55
+ Joshua J. Campoverde
46
56
  Juan Alvarez
47
57
  Julien Kirch
58
+ Jun Aruga
48
59
  Justin Coyne
49
60
  Justin Lambert
50
61
  Keith Rarick
51
62
  Kenichi Kamiya
52
63
  Kevin Read
53
64
  Kosuke Asami
65
+ Kyle Meyer
54
66
  Kyle VanderBeek
55
67
  Lars Gierth
56
68
  Lawrence Leonard Gilbert
57
69
  Lee Jarvis
58
70
  Lennon Day-Reynolds
71
+ Lin Jen-Shin
72
+ Magne Matre Gåsland
59
73
  Marc-André Cournoyer
74
+ Marius Butuc
60
75
  Matthew Manning
61
76
  Michael Klett
77
+ Michael Rykov
78
+ Michael Westbom
62
79
  Mike Fletcher
80
+ Nelson Elhage
63
81
  Nicholas Wieland
82
+ Nick Hammond
64
83
  Nick Plante
65
84
  Niko Dittmann
85
+ Nikolay Shebanov
66
86
  Oscar Del Ben
67
87
  Pablo Astigarraga
68
88
  Paul Dlug
69
89
  Pedro Belo
90
+ Pedro Chambino
70
91
  Philip Corliss
71
92
  Pierre-Louis Gottfrois
72
93
  Rafael Ssouza
73
- Rick "technoweenie"
94
+ Richard Schneeman
95
+ Rick Olson
74
96
  Robert Eanes
75
97
  Rodrigo Panachi
98
+ Sam Norbury
99
+ Samuel Cochran
76
100
  Syl Turner
77
101
  T. Watanabe
78
102
  Tekin
79
103
  W. Andrew Loe III
80
104
  Waynn Lue
105
+ Xavier Shay
81
106
  tpresa