wrest 1.0.0.beta2-universal-java-1.6

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 (101) hide show
  1. data/CHANGELOG +59 -0
  2. data/LICENCE +7 -0
  3. data/README.rdoc +127 -0
  4. data/bin/wrest +3 -0
  5. data/bin/wrest_shell.rb +21 -0
  6. data/lib/wrest.rb +101 -0
  7. data/lib/wrest.rbc +1900 -0
  8. data/lib/wrest/components.rb +20 -0
  9. data/lib/wrest/components.rbc +217 -0
  10. data/lib/wrest/components/container.rb +185 -0
  11. data/lib/wrest/components/container.rbc +2466 -0
  12. data/lib/wrest/components/container/alias_accessors.rb +66 -0
  13. data/lib/wrest/components/container/alias_accessors.rbc +905 -0
  14. data/lib/wrest/components/container/typecaster.rb +127 -0
  15. data/lib/wrest/components/container/typecaster.rbc +1985 -0
  16. data/lib/wrest/components/mutators.rb +39 -0
  17. data/lib/wrest/components/mutators.rbc +650 -0
  18. data/lib/wrest/components/mutators/base.rb +56 -0
  19. data/lib/wrest/components/mutators/base.rbc +702 -0
  20. data/lib/wrest/components/mutators/camel_to_snake_case.rb +22 -0
  21. data/lib/wrest/components/mutators/camel_to_snake_case.rbc +360 -0
  22. data/lib/wrest/components/mutators/xml_mini_type_caster.rb +43 -0
  23. data/lib/wrest/components/mutators/xml_mini_type_caster.rbc +679 -0
  24. data/lib/wrest/components/mutators/xml_simple_type_caster.rb +37 -0
  25. data/lib/wrest/components/mutators/xml_simple_type_caster.rbc +559 -0
  26. data/lib/wrest/components/translators.rb +28 -0
  27. data/lib/wrest/components/translators.rbc +517 -0
  28. data/lib/wrest/components/translators/content_types.rb +20 -0
  29. data/lib/wrest/components/translators/content_types.rbc +339 -0
  30. data/lib/wrest/components/translators/json.rb +25 -0
  31. data/lib/wrest/components/translators/json.rbc +462 -0
  32. data/lib/wrest/components/translators/xml.rb +24 -0
  33. data/lib/wrest/components/translators/xml.rbc +457 -0
  34. data/lib/wrest/core_ext/hash.rb +5 -0
  35. data/lib/wrest/core_ext/hash.rbc +182 -0
  36. data/lib/wrest/core_ext/hash/conversions.rb +44 -0
  37. data/lib/wrest/core_ext/hash/conversions.rbc +501 -0
  38. data/lib/wrest/core_ext/string.rb +5 -0
  39. data/lib/wrest/core_ext/string.rbc +182 -0
  40. data/lib/wrest/core_ext/string/conversions.rb +23 -0
  41. data/lib/wrest/core_ext/string/conversions.rbc +471 -0
  42. data/lib/wrest/curl.rb +49 -0
  43. data/lib/wrest/curl.rbc +704 -0
  44. data/lib/wrest/curl/delete.rb +23 -0
  45. data/lib/wrest/curl/get.rb +23 -0
  46. data/lib/wrest/curl/options.rb +16 -0
  47. data/lib/wrest/curl/post.rb +23 -0
  48. data/lib/wrest/curl/put.rb +23 -0
  49. data/lib/wrest/curl/request.rb +97 -0
  50. data/lib/wrest/curl/response.rb +71 -0
  51. data/lib/wrest/curl/session.rb +57 -0
  52. data/lib/wrest/exceptions.rb +33 -0
  53. data/lib/wrest/exceptions.rbc +312 -0
  54. data/lib/wrest/http_shared.rb +23 -0
  55. data/lib/wrest/http_shared.rbc +279 -0
  56. data/lib/wrest/http_shared/headers.rb +343 -0
  57. data/lib/wrest/http_shared/headers.rbc +353 -0
  58. data/lib/wrest/http_shared/standard_headers.rb +21 -0
  59. data/lib/wrest/http_shared/standard_headers.rbc +336 -0
  60. data/lib/wrest/http_shared/standard_tokens.rb +18 -0
  61. data/lib/wrest/http_shared/standard_tokens.rbc +316 -0
  62. data/lib/wrest/multipart.rb +52 -0
  63. data/lib/wrest/native.rb +33 -0
  64. data/lib/wrest/native.rbc +513 -0
  65. data/lib/wrest/native/connection_factory.rb +23 -0
  66. data/lib/wrest/native/connection_factory.rbc +445 -0
  67. data/lib/wrest/native/delete.rb +23 -0
  68. data/lib/wrest/native/delete.rbc +371 -0
  69. data/lib/wrest/native/get.rb +51 -0
  70. data/lib/wrest/native/get.rbc +855 -0
  71. data/lib/wrest/native/options.rb +23 -0
  72. data/lib/wrest/native/options.rbc +347 -0
  73. data/lib/wrest/native/post.rb +23 -0
  74. data/lib/wrest/native/post.rbc +388 -0
  75. data/lib/wrest/native/post_multipart.rb +32 -0
  76. data/lib/wrest/native/put.rb +23 -0
  77. data/lib/wrest/native/put.rbc +388 -0
  78. data/lib/wrest/native/put_multipart.rb +32 -0
  79. data/lib/wrest/native/redirection.rb +38 -0
  80. data/lib/wrest/native/redirection.rbc +520 -0
  81. data/lib/wrest/native/request.rb +94 -0
  82. data/lib/wrest/native/request.rbc +1675 -0
  83. data/lib/wrest/native/response.rb +120 -0
  84. data/lib/wrest/native/response.rbc +2150 -0
  85. data/lib/wrest/native/session.rb +57 -0
  86. data/lib/wrest/native/session.rbc +1372 -0
  87. data/lib/wrest/resource.rb +18 -0
  88. data/lib/wrest/resource.rbc +163 -0
  89. data/lib/wrest/resource/base.rb +99 -0
  90. data/lib/wrest/resource/base.rbc +2115 -0
  91. data/lib/wrest/resource/collection.rb +12 -0
  92. data/lib/wrest/resource/state.rb +6 -0
  93. data/lib/wrest/test.rb +1 -0
  94. data/lib/wrest/test/request_patches.rb +5 -0
  95. data/lib/wrest/uri.rb +160 -0
  96. data/lib/wrest/uri.rbc +2599 -0
  97. data/lib/wrest/uri_template.rb +49 -0
  98. data/lib/wrest/uri_template.rbc +505 -0
  99. data/lib/wrest/version.rb +23 -0
  100. data/lib/wrest/version.rbc +372 -0
  101. metadata +231 -0
@@ -0,0 +1,12 @@
1
+ # Copyright 2009 Sidu Ponnappa
2
+
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ # Unless required by applicable law or agreed to in writing, software distributed under the License
7
+ # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
8
+ # See the License for the specific language governing permissions and limitations under the License.
9
+
10
+ # Understands how to contain a collection of Wrest::Resources
11
+ class Wrest::Resource::Collection
12
+ end
@@ -0,0 +1,6 @@
1
+ module Wrest
2
+ module Resource
3
+ class State
4
+ end
5
+ end
6
+ end
data/lib/wrest/test.rb ADDED
@@ -0,0 +1 @@
1
+ require "#{Wrest::Root}/wrest/test/request_patches"
@@ -0,0 +1,5 @@
1
+ class Wrest::Native::Request
2
+ def invoke
3
+ raise Wrest::Exceptions::RealRequestMadeInTestEnvironmet, 'A real HTTP request was made while running tests. Please avoid using live HTTP connections while testing and replace them with mocks.'
4
+ end
5
+ end
data/lib/wrest/uri.rb ADDED
@@ -0,0 +1,160 @@
1
+ # Copyright 2009 Sidu Ponnappa
2
+
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ # Unless required by applicable law or agreed to in writing, software distributed under the License
7
+ # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
8
+ # See the License for the specific language governing permissions and limitations under the License.
9
+
10
+ module Wrest #:nodoc:
11
+ # Wrest::Uri provides a simple api for
12
+ # REST calls. String#to_uri is a convenience
13
+ # method to build a Wrest::Uri from a string url.
14
+ # Note that a Wrest::Uri is immutable.
15
+ #
16
+ # Basic HTTP Authentication is supported.
17
+ # Example:
18
+ # "http://kaiwren:fupuppies@coathangers.com/portal/1".to_uri
19
+ # "http://coathangers.com/portal/1".to_uri(:username => 'kaiwren', :password => 'fupuppies')
20
+ #
21
+ # The second form is preferred as it can handle passwords with special characters like ^ and @
22
+ #
23
+ # You can find examples that use real APIs (like delicious) under the wrest/examples directory.
24
+ class Uri
25
+ attr_reader :uri, :username, :password, :uri_string
26
+
27
+ # See Wrest::Http::Request for the available options and their default values.
28
+ def initialize(uri_string, options = {})
29
+ @options = options
30
+ @uri_string = uri_string.clone
31
+ @uri = URI.parse(uri_string)
32
+ @username = (@options[:username] ||= @uri.user)
33
+ @password = (@options[:password] ||= @uri.password)
34
+ end
35
+
36
+ # Build a new Wrest::Uri by appending _path_ to
37
+ # the current uri. If the original Wrest::Uri
38
+ # has a username and password, that will be
39
+ # copied to the new Wrest::Uri as well.
40
+ #
41
+ # Example:
42
+ # uri = "https://localhost:3000/v1".to_uri
43
+ # uri['/oogas/1'].get
44
+ #
45
+ # To change the username and password on the new
46
+ # instance, simply pass them as an options map.
47
+ #
48
+ # Example:
49
+ # uri = "https://localhost:3000/v1".to_uri(:username => 'foo', :password => 'bar')
50
+ # uri['/oogas/1', {:username => 'meh', :password => 'baz'}].get
51
+ def [](path, options = nil)
52
+ Uri.new(@uri_string+path, options || @options)
53
+ end
54
+
55
+ # Clones a Uri, building a new instance with exactly the same uri string.
56
+ # You can however change the Uri options or add new ones.
57
+ def clone(opts = {})
58
+ Uri.new(@uri_string, @options.merge(opts))
59
+ end
60
+
61
+ def eql?(other)
62
+ self == other
63
+ end
64
+
65
+ def ==(other)
66
+ return false if other.class != self.class
67
+ return other.uri == self.uri && self.username == other.username && self.password == other.password
68
+ end
69
+
70
+ def hash
71
+ @uri.hash + @username.hash + @password.hash + 20090423
72
+ end
73
+
74
+ # This produces exactly the same string as the Wrest::Uri was constructed with.
75
+ # If the orignial URI contained a HTTP username and password, that too will
76
+ # show up, so be careful if using this for logging.
77
+ def to_s
78
+ uri_string
79
+ end
80
+
81
+ # Make a GET request to this URI. This is a convenience API
82
+ # that creates a Wrest::Http::Get, executes it and returns a Wrest::Http::Response.
83
+ #
84
+ # Remember to escape all parameter strings if necessary, using URI.escape
85
+ def get(parameters = {}, headers = {})
86
+ Http::Get.new(self, parameters, headers, @options).invoke
87
+ end
88
+
89
+ # Make a PUT request to this URI. This is a convenience API
90
+ # that creates a Wrest::Http::Put, executes it and returns a Wrest::Http::Response.
91
+ #
92
+ # Remember to escape all parameter strings if necessary, using URI.escape
93
+ def put(body = '', headers = {}, parameters = {})
94
+ Http::Put.new(self, body.to_s, headers, parameters, @options).invoke
95
+ end
96
+
97
+ # Makes a POST request to this URI. This is a convenience API
98
+ # that creates a Wrest::Http::Post, executes it and returns a Wrest::Http::Response.
99
+ # Note that sending an empty body will blow up if you're using libcurl.
100
+ #
101
+ # Remember to escape all parameter strings if necessary, using URI.escape
102
+ def post(body = '', headers = {}, parameters = {})
103
+ Http::Post.new(self, body.to_s, headers, parameters, @options).invoke
104
+ end
105
+
106
+ # Makes a POST request to this URI. This is a convenience API
107
+ # that mimics a form being posted; some allegly RESTful APIs like FCBK require
108
+ # this.
109
+ #
110
+ # Form encoding involves munging the parameters into a string and placing them
111
+ # in the body, as well as setting the Content-Type header to
112
+ # application/x-www-form-urlencoded
113
+ def post_form(parameters = {}, headers = {})
114
+ headers = headers.merge(Wrest::H::ContentType => Wrest::T::FormEncoded)
115
+ body = parameters.to_query
116
+ Http::Post.new(self, body, headers, {}, @options).invoke
117
+ end
118
+
119
+ # Makes a DELETE request to this URI. This is a convenience API
120
+ # that creates a Wrest::Http::Delete, executes it and returns a Wrest::Http::Response.
121
+ #
122
+ # Remember to escape all parameter strings if necessary, using URI.escape
123
+ def delete(parameters = {}, headers = {})
124
+ Http::Delete.new(self, parameters, headers, @options).invoke
125
+ end
126
+
127
+ # Makes an OPTIONS request to this URI. This is a convenience API
128
+ # that creates a Wrest::Http::Options, executes it and returns the Wrest::Http::Response.
129
+ def options
130
+ Http::Options.new(self, @options).invoke
131
+ end
132
+
133
+ def https?
134
+ @uri.is_a?(URI::HTTPS)
135
+ end
136
+
137
+ # Provides the full path of a request.
138
+ # For example, for
139
+ # http://localhost:3000/demons/1/chi?sort=true
140
+ # this would return
141
+ # /demons/1/chi?sort=true
142
+ def full_path
143
+ uri.request_uri
144
+ end
145
+
146
+ def protocol
147
+ uri.scheme
148
+ end
149
+
150
+ def host
151
+ uri.host
152
+ end
153
+
154
+ def port
155
+ uri.port
156
+ end
157
+
158
+ include Http::ConnectionFactory
159
+ end
160
+ end
data/lib/wrest/uri.rbc ADDED
@@ -0,0 +1,2599 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 5
54
+ Wrest
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 5
67
+ Wrest
68
+ i
69
+ 29
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 1
76
+ 65
77
+ 49
78
+ 1
79
+ 3
80
+ 13
81
+ 99
82
+ 12
83
+ 7
84
+ 2
85
+ 12
86
+ 7
87
+ 3
88
+ 12
89
+ 65
90
+ 12
91
+ 49
92
+ 4
93
+ 4
94
+ 15
95
+ 49
96
+ 2
97
+ 0
98
+ 11
99
+ I
100
+ 6
101
+ I
102
+ 0
103
+ I
104
+ 0
105
+ I
106
+ 0
107
+ n
108
+ p
109
+ 5
110
+ x
111
+ 3
112
+ Uri
113
+ x
114
+ 10
115
+ open_class
116
+ x
117
+ 14
118
+ __class_init__
119
+ M
120
+ 1
121
+ n
122
+ n
123
+ x
124
+ 3
125
+ Uri
126
+ i
127
+ 279
128
+ 5
129
+ 66
130
+ 5
131
+ 7
132
+ 0
133
+ 7
134
+ 1
135
+ 7
136
+ 2
137
+ 7
138
+ 3
139
+ 47
140
+ 49
141
+ 4
142
+ 4
143
+ 15
144
+ 99
145
+ 7
146
+ 5
147
+ 7
148
+ 6
149
+ 65
150
+ 67
151
+ 49
152
+ 7
153
+ 0
154
+ 49
155
+ 8
156
+ 4
157
+ 15
158
+ 99
159
+ 7
160
+ 9
161
+ 7
162
+ 10
163
+ 65
164
+ 67
165
+ 49
166
+ 7
167
+ 0
168
+ 49
169
+ 8
170
+ 4
171
+ 15
172
+ 99
173
+ 7
174
+ 11
175
+ 7
176
+ 12
177
+ 65
178
+ 67
179
+ 49
180
+ 7
181
+ 0
182
+ 49
183
+ 8
184
+ 4
185
+ 15
186
+ 99
187
+ 7
188
+ 13
189
+ 7
190
+ 14
191
+ 65
192
+ 67
193
+ 49
194
+ 7
195
+ 0
196
+ 49
197
+ 8
198
+ 4
199
+ 15
200
+ 99
201
+ 7
202
+ 15
203
+ 7
204
+ 16
205
+ 65
206
+ 67
207
+ 49
208
+ 7
209
+ 0
210
+ 49
211
+ 8
212
+ 4
213
+ 15
214
+ 99
215
+ 7
216
+ 17
217
+ 7
218
+ 18
219
+ 65
220
+ 67
221
+ 49
222
+ 7
223
+ 0
224
+ 49
225
+ 8
226
+ 4
227
+ 15
228
+ 99
229
+ 7
230
+ 19
231
+ 7
232
+ 20
233
+ 65
234
+ 67
235
+ 49
236
+ 7
237
+ 0
238
+ 49
239
+ 8
240
+ 4
241
+ 15
242
+ 99
243
+ 7
244
+ 21
245
+ 7
246
+ 22
247
+ 65
248
+ 67
249
+ 49
250
+ 7
251
+ 0
252
+ 49
253
+ 8
254
+ 4
255
+ 15
256
+ 99
257
+ 7
258
+ 23
259
+ 7
260
+ 24
261
+ 65
262
+ 67
263
+ 49
264
+ 7
265
+ 0
266
+ 49
267
+ 8
268
+ 4
269
+ 15
270
+ 99
271
+ 7
272
+ 25
273
+ 7
274
+ 26
275
+ 65
276
+ 67
277
+ 49
278
+ 7
279
+ 0
280
+ 49
281
+ 8
282
+ 4
283
+ 15
284
+ 99
285
+ 7
286
+ 27
287
+ 7
288
+ 28
289
+ 65
290
+ 67
291
+ 49
292
+ 7
293
+ 0
294
+ 49
295
+ 8
296
+ 4
297
+ 15
298
+ 99
299
+ 7
300
+ 29
301
+ 7
302
+ 30
303
+ 65
304
+ 67
305
+ 49
306
+ 7
307
+ 0
308
+ 49
309
+ 8
310
+ 4
311
+ 15
312
+ 99
313
+ 7
314
+ 31
315
+ 7
316
+ 32
317
+ 65
318
+ 67
319
+ 49
320
+ 7
321
+ 0
322
+ 49
323
+ 8
324
+ 4
325
+ 15
326
+ 99
327
+ 7
328
+ 33
329
+ 7
330
+ 34
331
+ 65
332
+ 67
333
+ 49
334
+ 7
335
+ 0
336
+ 49
337
+ 8
338
+ 4
339
+ 15
340
+ 99
341
+ 7
342
+ 35
343
+ 7
344
+ 36
345
+ 65
346
+ 67
347
+ 49
348
+ 7
349
+ 0
350
+ 49
351
+ 8
352
+ 4
353
+ 15
354
+ 99
355
+ 7
356
+ 37
357
+ 7
358
+ 38
359
+ 65
360
+ 67
361
+ 49
362
+ 7
363
+ 0
364
+ 49
365
+ 8
366
+ 4
367
+ 15
368
+ 99
369
+ 7
370
+ 39
371
+ 7
372
+ 40
373
+ 65
374
+ 67
375
+ 49
376
+ 7
377
+ 0
378
+ 49
379
+ 8
380
+ 4
381
+ 15
382
+ 99
383
+ 7
384
+ 41
385
+ 7
386
+ 42
387
+ 65
388
+ 67
389
+ 49
390
+ 7
391
+ 0
392
+ 49
393
+ 8
394
+ 4
395
+ 15
396
+ 5
397
+ 45
398
+ 43
399
+ 44
400
+ 43
401
+ 45
402
+ 47
403
+ 49
404
+ 46
405
+ 1
406
+ 11
407
+ I
408
+ 5
409
+ I
410
+ 0
411
+ I
412
+ 0
413
+ I
414
+ 0
415
+ n
416
+ p
417
+ 47
418
+ x
419
+ 3
420
+ uri
421
+ x
422
+ 8
423
+ username
424
+ x
425
+ 8
426
+ password
427
+ x
428
+ 10
429
+ uri_string
430
+ x
431
+ 11
432
+ attr_reader
433
+ x
434
+ 10
435
+ initialize
436
+ M
437
+ 1
438
+ n
439
+ n
440
+ x
441
+ 10
442
+ initialize
443
+ i
444
+ 106
445
+ 23
446
+ 1
447
+ 10
448
+ 14
449
+ 44
450
+ 43
451
+ 0
452
+ 78
453
+ 49
454
+ 1
455
+ 1
456
+ 19
457
+ 1
458
+ 15
459
+ 20
460
+ 1
461
+ 38
462
+ 2
463
+ 15
464
+ 20
465
+ 0
466
+ 49
467
+ 3
468
+ 0
469
+ 38
470
+ 4
471
+ 15
472
+ 45
473
+ 5
474
+ 6
475
+ 20
476
+ 0
477
+ 49
478
+ 7
479
+ 1
480
+ 38
481
+ 8
482
+ 15
483
+ 39
484
+ 2
485
+ 7
486
+ 9
487
+ 14
488
+ 2
489
+ 49
490
+ 10
491
+ 1
492
+ 13
493
+ 10
494
+ 65
495
+ 15
496
+ 39
497
+ 8
498
+ 49
499
+ 11
500
+ 0
501
+ 13
502
+ 18
503
+ 3
504
+ 49
505
+ 12
506
+ 2
507
+ 15
508
+ 8
509
+ 69
510
+ 18
511
+ 2
512
+ 16
513
+ 2
514
+ 38
515
+ 13
516
+ 15
517
+ 39
518
+ 2
519
+ 7
520
+ 14
521
+ 14
522
+ 2
523
+ 49
524
+ 10
525
+ 1
526
+ 13
527
+ 10
528
+ 99
529
+ 15
530
+ 39
531
+ 8
532
+ 49
533
+ 14
534
+ 0
535
+ 13
536
+ 18
537
+ 3
538
+ 49
539
+ 12
540
+ 2
541
+ 15
542
+ 8
543
+ 103
544
+ 18
545
+ 2
546
+ 16
547
+ 2
548
+ 38
549
+ 15
550
+ 11
551
+ I
552
+ 6
553
+ I
554
+ 2
555
+ I
556
+ 1
557
+ I
558
+ 2
559
+ n
560
+ p
561
+ 16
562
+ x
563
+ 4
564
+ Hash
565
+ x
566
+ 16
567
+ new_from_literal
568
+ x
569
+ 8
570
+ @options
571
+ x
572
+ 5
573
+ clone
574
+ x
575
+ 11
576
+ @uri_string
577
+ x
578
+ 3
579
+ URI
580
+ n
581
+ x
582
+ 5
583
+ parse
584
+ x
585
+ 4
586
+ @uri
587
+ x
588
+ 8
589
+ username
590
+ x
591
+ 2
592
+ []
593
+ x
594
+ 4
595
+ user
596
+ x
597
+ 3
598
+ []=
599
+ x
600
+ 9
601
+ @username
602
+ x
603
+ 8
604
+ password
605
+ x
606
+ 9
607
+ @password
608
+ p
609
+ 13
610
+ I
611
+ 0
612
+ I
613
+ 1c
614
+ I
615
+ e
616
+ I
617
+ 1d
618
+ I
619
+ 13
620
+ I
621
+ 1e
622
+ I
623
+ 1b
624
+ I
625
+ 1f
626
+ I
627
+ 26
628
+ I
629
+ 20
630
+ I
631
+ 48
632
+ I
633
+ 21
634
+ I
635
+ 6a
636
+ x
637
+ 39
638
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
639
+ p
640
+ 2
641
+ x
642
+ 10
643
+ uri_string
644
+ x
645
+ 7
646
+ options
647
+ x
648
+ 17
649
+ method_visibility
650
+ x
651
+ 15
652
+ add_defn_method
653
+ x
654
+ 2
655
+ []
656
+ M
657
+ 1
658
+ n
659
+ n
660
+ x
661
+ 2
662
+ []
663
+ i
664
+ 61
665
+ 23
666
+ 1
667
+ 10
668
+ 8
669
+ 1
670
+ 19
671
+ 1
672
+ 15
673
+ 45
674
+ 0
675
+ 1
676
+ 13
677
+ 71
678
+ 2
679
+ 47
680
+ 9
681
+ 43
682
+ 47
683
+ 49
684
+ 3
685
+ 0
686
+ 13
687
+ 39
688
+ 4
689
+ 20
690
+ 0
691
+ 81
692
+ 5
693
+ 20
694
+ 1
695
+ 13
696
+ 10
697
+ 36
698
+ 15
699
+ 39
700
+ 6
701
+ 47
702
+ 49
703
+ 7
704
+ 2
705
+ 15
706
+ 8
707
+ 60
708
+ 39
709
+ 4
710
+ 20
711
+ 0
712
+ 81
713
+ 5
714
+ 20
715
+ 1
716
+ 13
717
+ 10
718
+ 57
719
+ 15
720
+ 39
721
+ 6
722
+ 49
723
+ 2
724
+ 2
725
+ 11
726
+ I
727
+ 7
728
+ I
729
+ 2
730
+ I
731
+ 1
732
+ I
733
+ 2
734
+ n
735
+ p
736
+ 8
737
+ x
738
+ 3
739
+ Uri
740
+ n
741
+ x
742
+ 3
743
+ new
744
+ x
745
+ 8
746
+ allocate
747
+ x
748
+ 11
749
+ @uri_string
750
+ x
751
+ 1
752
+ +
753
+ x
754
+ 8
755
+ @options
756
+ x
757
+ 10
758
+ initialize
759
+ p
760
+ 5
761
+ I
762
+ 0
763
+ I
764
+ 33
765
+ I
766
+ 8
767
+ I
768
+ 34
769
+ I
770
+ 3d
771
+ x
772
+ 39
773
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
774
+ p
775
+ 2
776
+ x
777
+ 4
778
+ path
779
+ x
780
+ 7
781
+ options
782
+ x
783
+ 5
784
+ clone
785
+ M
786
+ 1
787
+ n
788
+ n
789
+ x
790
+ 5
791
+ clone
792
+ i
793
+ 57
794
+ 23
795
+ 0
796
+ 10
797
+ 14
798
+ 44
799
+ 43
800
+ 0
801
+ 78
802
+ 49
803
+ 1
804
+ 1
805
+ 19
806
+ 0
807
+ 15
808
+ 45
809
+ 2
810
+ 3
811
+ 13
812
+ 71
813
+ 4
814
+ 47
815
+ 9
816
+ 44
817
+ 47
818
+ 49
819
+ 5
820
+ 0
821
+ 13
822
+ 39
823
+ 6
824
+ 39
825
+ 7
826
+ 20
827
+ 0
828
+ 49
829
+ 8
830
+ 1
831
+ 47
832
+ 49
833
+ 9
834
+ 2
835
+ 15
836
+ 8
837
+ 56
838
+ 39
839
+ 6
840
+ 39
841
+ 7
842
+ 20
843
+ 0
844
+ 49
845
+ 8
846
+ 1
847
+ 49
848
+ 4
849
+ 2
850
+ 11
851
+ I
852
+ 6
853
+ I
854
+ 1
855
+ I
856
+ 0
857
+ I
858
+ 1
859
+ n
860
+ p
861
+ 10
862
+ x
863
+ 4
864
+ Hash
865
+ x
866
+ 16
867
+ new_from_literal
868
+ x
869
+ 3
870
+ Uri
871
+ n
872
+ x
873
+ 3
874
+ new
875
+ x
876
+ 8
877
+ allocate
878
+ x
879
+ 11
880
+ @uri_string
881
+ x
882
+ 8
883
+ @options
884
+ x
885
+ 5
886
+ merge
887
+ x
888
+ 10
889
+ initialize
890
+ p
891
+ 5
892
+ I
893
+ 0
894
+ I
895
+ 39
896
+ I
897
+ e
898
+ I
899
+ 3a
900
+ I
901
+ 39
902
+ x
903
+ 39
904
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
905
+ p
906
+ 1
907
+ x
908
+ 4
909
+ opts
910
+ x
911
+ 4
912
+ eql?
913
+ M
914
+ 1
915
+ n
916
+ n
917
+ x
918
+ 4
919
+ eql?
920
+ i
921
+ 6
922
+ 5
923
+ 20
924
+ 0
925
+ 83
926
+ 0
927
+ 11
928
+ I
929
+ 3
930
+ I
931
+ 1
932
+ I
933
+ 1
934
+ I
935
+ 1
936
+ n
937
+ p
938
+ 1
939
+ x
940
+ 2
941
+ ==
942
+ p
943
+ 5
944
+ I
945
+ 0
946
+ I
947
+ 3d
948
+ I
949
+ 0
950
+ I
951
+ 3e
952
+ I
953
+ 6
954
+ x
955
+ 39
956
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
957
+ p
958
+ 1
959
+ x
960
+ 5
961
+ other
962
+ x
963
+ 2
964
+ ==
965
+ M
966
+ 1
967
+ n
968
+ n
969
+ x
970
+ 2
971
+ ==
972
+ i
973
+ 62
974
+ 20
975
+ 0
976
+ 49
977
+ 0
978
+ 0
979
+ 5
980
+ 49
981
+ 0
982
+ 0
983
+ 83
984
+ 1
985
+ 9
986
+ 16
987
+ 1
988
+ 8
989
+ 18
990
+ 3
991
+ 11
992
+ 15
993
+ 20
994
+ 0
995
+ 49
996
+ 2
997
+ 0
998
+ 5
999
+ 49
1000
+ 2
1001
+ 0
1002
+ 83
1003
+ 1
1004
+ 13
1005
+ 9
1006
+ 60
1007
+ 15
1008
+ 5
1009
+ 49
1010
+ 3
1011
+ 0
1012
+ 20
1013
+ 0
1014
+ 49
1015
+ 3
1016
+ 0
1017
+ 83
1018
+ 1
1019
+ 13
1020
+ 9
1021
+ 60
1022
+ 15
1023
+ 5
1024
+ 49
1025
+ 4
1026
+ 0
1027
+ 20
1028
+ 0
1029
+ 49
1030
+ 4
1031
+ 0
1032
+ 83
1033
+ 1
1034
+ 11
1035
+ 11
1036
+ I
1037
+ 3
1038
+ I
1039
+ 1
1040
+ I
1041
+ 1
1042
+ I
1043
+ 1
1044
+ n
1045
+ p
1046
+ 5
1047
+ x
1048
+ 5
1049
+ class
1050
+ x
1051
+ 2
1052
+ ==
1053
+ x
1054
+ 3
1055
+ uri
1056
+ x
1057
+ 8
1058
+ username
1059
+ x
1060
+ 8
1061
+ password
1062
+ p
1063
+ 7
1064
+ I
1065
+ 0
1066
+ I
1067
+ 41
1068
+ I
1069
+ 0
1070
+ I
1071
+ 42
1072
+ I
1073
+ 13
1074
+ I
1075
+ 43
1076
+ I
1077
+ 3e
1078
+ x
1079
+ 39
1080
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
1081
+ p
1082
+ 1
1083
+ x
1084
+ 5
1085
+ other
1086
+ x
1087
+ 4
1088
+ hash
1089
+ M
1090
+ 1
1091
+ n
1092
+ n
1093
+ x
1094
+ 4
1095
+ hash
1096
+ i
1097
+ 24
1098
+ 39
1099
+ 0
1100
+ 49
1101
+ 1
1102
+ 0
1103
+ 39
1104
+ 2
1105
+ 49
1106
+ 1
1107
+ 0
1108
+ 81
1109
+ 3
1110
+ 39
1111
+ 4
1112
+ 49
1113
+ 1
1114
+ 0
1115
+ 81
1116
+ 3
1117
+ 7
1118
+ 5
1119
+ 81
1120
+ 3
1121
+ 11
1122
+ I
1123
+ 2
1124
+ I
1125
+ 0
1126
+ I
1127
+ 0
1128
+ I
1129
+ 0
1130
+ n
1131
+ p
1132
+ 6
1133
+ x
1134
+ 4
1135
+ @uri
1136
+ x
1137
+ 4
1138
+ hash
1139
+ x
1140
+ 9
1141
+ @username
1142
+ x
1143
+ 1
1144
+ +
1145
+ x
1146
+ 9
1147
+ @password
1148
+ I
1149
+ 1328e37
1150
+ p
1151
+ 5
1152
+ I
1153
+ 0
1154
+ I
1155
+ 46
1156
+ I
1157
+ 0
1158
+ I
1159
+ 47
1160
+ I
1161
+ 18
1162
+ x
1163
+ 39
1164
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
1165
+ p
1166
+ 0
1167
+ x
1168
+ 4
1169
+ to_s
1170
+ M
1171
+ 1
1172
+ n
1173
+ n
1174
+ x
1175
+ 4
1176
+ to_s
1177
+ i
1178
+ 4
1179
+ 5
1180
+ 48
1181
+ 0
1182
+ 11
1183
+ I
1184
+ 1
1185
+ I
1186
+ 0
1187
+ I
1188
+ 0
1189
+ I
1190
+ 0
1191
+ n
1192
+ p
1193
+ 1
1194
+ x
1195
+ 10
1196
+ uri_string
1197
+ p
1198
+ 5
1199
+ I
1200
+ 0
1201
+ I
1202
+ 4d
1203
+ I
1204
+ 0
1205
+ I
1206
+ 4e
1207
+ I
1208
+ 4
1209
+ x
1210
+ 39
1211
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
1212
+ p
1213
+ 0
1214
+ x
1215
+ 3
1216
+ get
1217
+ M
1218
+ 1
1219
+ n
1220
+ n
1221
+ x
1222
+ 3
1223
+ get
1224
+ i
1225
+ 72
1226
+ 23
1227
+ 0
1228
+ 10
1229
+ 14
1230
+ 44
1231
+ 43
1232
+ 0
1233
+ 78
1234
+ 49
1235
+ 1
1236
+ 1
1237
+ 19
1238
+ 0
1239
+ 15
1240
+ 23
1241
+ 1
1242
+ 10
1243
+ 28
1244
+ 44
1245
+ 43
1246
+ 0
1247
+ 78
1248
+ 49
1249
+ 1
1250
+ 1
1251
+ 19
1252
+ 1
1253
+ 15
1254
+ 45
1255
+ 2
1256
+ 3
1257
+ 43
1258
+ 4
1259
+ 13
1260
+ 71
1261
+ 5
1262
+ 47
1263
+ 9
1264
+ 58
1265
+ 47
1266
+ 49
1267
+ 6
1268
+ 0
1269
+ 13
1270
+ 5
1271
+ 20
1272
+ 0
1273
+ 20
1274
+ 1
1275
+ 39
1276
+ 7
1277
+ 47
1278
+ 49
1279
+ 8
1280
+ 4
1281
+ 15
1282
+ 8
1283
+ 68
1284
+ 5
1285
+ 20
1286
+ 0
1287
+ 20
1288
+ 1
1289
+ 39
1290
+ 7
1291
+ 49
1292
+ 5
1293
+ 4
1294
+ 49
1295
+ 9
1296
+ 0
1297
+ 11
1298
+ I
1299
+ 8
1300
+ I
1301
+ 2
1302
+ I
1303
+ 0
1304
+ I
1305
+ 2
1306
+ n
1307
+ p
1308
+ 10
1309
+ x
1310
+ 4
1311
+ Hash
1312
+ x
1313
+ 16
1314
+ new_from_literal
1315
+ x
1316
+ 4
1317
+ Http
1318
+ n
1319
+ x
1320
+ 3
1321
+ Get
1322
+ x
1323
+ 3
1324
+ new
1325
+ x
1326
+ 8
1327
+ allocate
1328
+ x
1329
+ 8
1330
+ @options
1331
+ x
1332
+ 10
1333
+ initialize
1334
+ x
1335
+ 6
1336
+ invoke
1337
+ p
1338
+ 5
1339
+ I
1340
+ 0
1341
+ I
1342
+ 55
1343
+ I
1344
+ 1c
1345
+ I
1346
+ 56
1347
+ I
1348
+ 48
1349
+ x
1350
+ 39
1351
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
1352
+ p
1353
+ 2
1354
+ x
1355
+ 10
1356
+ parameters
1357
+ x
1358
+ 7
1359
+ headers
1360
+ x
1361
+ 3
1362
+ put
1363
+ M
1364
+ 1
1365
+ n
1366
+ n
1367
+ x
1368
+ 3
1369
+ put
1370
+ i
1371
+ 92
1372
+ 23
1373
+ 0
1374
+ 10
1375
+ 10
1376
+ 7
1377
+ 0
1378
+ 64
1379
+ 19
1380
+ 0
1381
+ 15
1382
+ 23
1383
+ 1
1384
+ 10
1385
+ 24
1386
+ 44
1387
+ 43
1388
+ 1
1389
+ 78
1390
+ 49
1391
+ 2
1392
+ 1
1393
+ 19
1394
+ 1
1395
+ 15
1396
+ 23
1397
+ 2
1398
+ 10
1399
+ 38
1400
+ 44
1401
+ 43
1402
+ 1
1403
+ 78
1404
+ 49
1405
+ 2
1406
+ 1
1407
+ 19
1408
+ 2
1409
+ 15
1410
+ 45
1411
+ 3
1412
+ 4
1413
+ 43
1414
+ 5
1415
+ 13
1416
+ 71
1417
+ 6
1418
+ 47
1419
+ 9
1420
+ 73
1421
+ 47
1422
+ 49
1423
+ 7
1424
+ 0
1425
+ 13
1426
+ 5
1427
+ 20
1428
+ 0
1429
+ 49
1430
+ 8
1431
+ 0
1432
+ 20
1433
+ 1
1434
+ 20
1435
+ 2
1436
+ 39
1437
+ 9
1438
+ 47
1439
+ 49
1440
+ 10
1441
+ 5
1442
+ 15
1443
+ 8
1444
+ 88
1445
+ 5
1446
+ 20
1447
+ 0
1448
+ 49
1449
+ 8
1450
+ 0
1451
+ 20
1452
+ 1
1453
+ 20
1454
+ 2
1455
+ 39
1456
+ 9
1457
+ 49
1458
+ 6
1459
+ 5
1460
+ 49
1461
+ 11
1462
+ 0
1463
+ 11
1464
+ I
1465
+ a
1466
+ I
1467
+ 3
1468
+ I
1469
+ 0
1470
+ I
1471
+ 3
1472
+ n
1473
+ p
1474
+ 12
1475
+ s
1476
+ 0
1477
+
1478
+ x
1479
+ 4
1480
+ Hash
1481
+ x
1482
+ 16
1483
+ new_from_literal
1484
+ x
1485
+ 4
1486
+ Http
1487
+ n
1488
+ x
1489
+ 3
1490
+ Put
1491
+ x
1492
+ 3
1493
+ new
1494
+ x
1495
+ 8
1496
+ allocate
1497
+ x
1498
+ 4
1499
+ to_s
1500
+ x
1501
+ 8
1502
+ @options
1503
+ x
1504
+ 10
1505
+ initialize
1506
+ x
1507
+ 6
1508
+ invoke
1509
+ p
1510
+ 5
1511
+ I
1512
+ 0
1513
+ I
1514
+ 5d
1515
+ I
1516
+ 26
1517
+ I
1518
+ 5e
1519
+ I
1520
+ 5c
1521
+ x
1522
+ 39
1523
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
1524
+ p
1525
+ 3
1526
+ x
1527
+ 4
1528
+ body
1529
+ x
1530
+ 7
1531
+ headers
1532
+ x
1533
+ 10
1534
+ parameters
1535
+ x
1536
+ 4
1537
+ post
1538
+ M
1539
+ 1
1540
+ n
1541
+ n
1542
+ x
1543
+ 4
1544
+ post
1545
+ i
1546
+ 92
1547
+ 23
1548
+ 0
1549
+ 10
1550
+ 10
1551
+ 7
1552
+ 0
1553
+ 64
1554
+ 19
1555
+ 0
1556
+ 15
1557
+ 23
1558
+ 1
1559
+ 10
1560
+ 24
1561
+ 44
1562
+ 43
1563
+ 1
1564
+ 78
1565
+ 49
1566
+ 2
1567
+ 1
1568
+ 19
1569
+ 1
1570
+ 15
1571
+ 23
1572
+ 2
1573
+ 10
1574
+ 38
1575
+ 44
1576
+ 43
1577
+ 1
1578
+ 78
1579
+ 49
1580
+ 2
1581
+ 1
1582
+ 19
1583
+ 2
1584
+ 15
1585
+ 45
1586
+ 3
1587
+ 4
1588
+ 43
1589
+ 5
1590
+ 13
1591
+ 71
1592
+ 6
1593
+ 47
1594
+ 9
1595
+ 73
1596
+ 47
1597
+ 49
1598
+ 7
1599
+ 0
1600
+ 13
1601
+ 5
1602
+ 20
1603
+ 0
1604
+ 49
1605
+ 8
1606
+ 0
1607
+ 20
1608
+ 1
1609
+ 20
1610
+ 2
1611
+ 39
1612
+ 9
1613
+ 47
1614
+ 49
1615
+ 10
1616
+ 5
1617
+ 15
1618
+ 8
1619
+ 88
1620
+ 5
1621
+ 20
1622
+ 0
1623
+ 49
1624
+ 8
1625
+ 0
1626
+ 20
1627
+ 1
1628
+ 20
1629
+ 2
1630
+ 39
1631
+ 9
1632
+ 49
1633
+ 6
1634
+ 5
1635
+ 49
1636
+ 11
1637
+ 0
1638
+ 11
1639
+ I
1640
+ a
1641
+ I
1642
+ 3
1643
+ I
1644
+ 0
1645
+ I
1646
+ 3
1647
+ n
1648
+ p
1649
+ 12
1650
+ s
1651
+ 0
1652
+
1653
+ x
1654
+ 4
1655
+ Hash
1656
+ x
1657
+ 16
1658
+ new_from_literal
1659
+ x
1660
+ 4
1661
+ Http
1662
+ n
1663
+ x
1664
+ 4
1665
+ Post
1666
+ x
1667
+ 3
1668
+ new
1669
+ x
1670
+ 8
1671
+ allocate
1672
+ x
1673
+ 4
1674
+ to_s
1675
+ x
1676
+ 8
1677
+ @options
1678
+ x
1679
+ 10
1680
+ initialize
1681
+ x
1682
+ 6
1683
+ invoke
1684
+ p
1685
+ 5
1686
+ I
1687
+ 0
1688
+ I
1689
+ 66
1690
+ I
1691
+ 26
1692
+ I
1693
+ 67
1694
+ I
1695
+ 5c
1696
+ x
1697
+ 39
1698
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
1699
+ p
1700
+ 3
1701
+ x
1702
+ 4
1703
+ body
1704
+ x
1705
+ 7
1706
+ headers
1707
+ x
1708
+ 10
1709
+ parameters
1710
+ x
1711
+ 9
1712
+ post_form
1713
+ M
1714
+ 1
1715
+ n
1716
+ n
1717
+ x
1718
+ 9
1719
+ post_form
1720
+ i
1721
+ 128
1722
+ 23
1723
+ 0
1724
+ 10
1725
+ 14
1726
+ 44
1727
+ 43
1728
+ 0
1729
+ 78
1730
+ 49
1731
+ 1
1732
+ 1
1733
+ 19
1734
+ 0
1735
+ 15
1736
+ 23
1737
+ 1
1738
+ 10
1739
+ 28
1740
+ 44
1741
+ 43
1742
+ 0
1743
+ 78
1744
+ 49
1745
+ 1
1746
+ 1
1747
+ 19
1748
+ 1
1749
+ 15
1750
+ 20
1751
+ 1
1752
+ 44
1753
+ 43
1754
+ 0
1755
+ 79
1756
+ 49
1757
+ 1
1758
+ 1
1759
+ 13
1760
+ 45
1761
+ 2
1762
+ 3
1763
+ 43
1764
+ 4
1765
+ 43
1766
+ 5
1767
+ 45
1768
+ 2
1769
+ 6
1770
+ 43
1771
+ 7
1772
+ 43
1773
+ 8
1774
+ 49
1775
+ 9
1776
+ 2
1777
+ 15
1778
+ 49
1779
+ 10
1780
+ 1
1781
+ 19
1782
+ 1
1783
+ 15
1784
+ 20
1785
+ 0
1786
+ 49
1787
+ 11
1788
+ 0
1789
+ 19
1790
+ 2
1791
+ 15
1792
+ 45
1793
+ 12
1794
+ 13
1795
+ 43
1796
+ 14
1797
+ 13
1798
+ 71
1799
+ 15
1800
+ 47
1801
+ 9
1802
+ 107
1803
+ 47
1804
+ 49
1805
+ 16
1806
+ 0
1807
+ 13
1808
+ 5
1809
+ 20
1810
+ 2
1811
+ 20
1812
+ 1
1813
+ 44
1814
+ 43
1815
+ 0
1816
+ 78
1817
+ 49
1818
+ 1
1819
+ 1
1820
+ 39
1821
+ 17
1822
+ 47
1823
+ 49
1824
+ 18
1825
+ 5
1826
+ 15
1827
+ 8
1828
+ 124
1829
+ 5
1830
+ 20
1831
+ 2
1832
+ 20
1833
+ 1
1834
+ 44
1835
+ 43
1836
+ 0
1837
+ 78
1838
+ 49
1839
+ 1
1840
+ 1
1841
+ 39
1842
+ 17
1843
+ 49
1844
+ 15
1845
+ 5
1846
+ 49
1847
+ 19
1848
+ 0
1849
+ 11
1850
+ I
1851
+ a
1852
+ I
1853
+ 3
1854
+ I
1855
+ 0
1856
+ I
1857
+ 2
1858
+ n
1859
+ p
1860
+ 20
1861
+ x
1862
+ 4
1863
+ Hash
1864
+ x
1865
+ 16
1866
+ new_from_literal
1867
+ x
1868
+ 5
1869
+ Wrest
1870
+ n
1871
+ x
1872
+ 1
1873
+ H
1874
+ x
1875
+ 11
1876
+ ContentType
1877
+ n
1878
+ x
1879
+ 1
1880
+ T
1881
+ x
1882
+ 11
1883
+ FormEncoded
1884
+ x
1885
+ 3
1886
+ []=
1887
+ x
1888
+ 5
1889
+ merge
1890
+ x
1891
+ 8
1892
+ to_query
1893
+ x
1894
+ 4
1895
+ Http
1896
+ n
1897
+ x
1898
+ 4
1899
+ Post
1900
+ x
1901
+ 3
1902
+ new
1903
+ x
1904
+ 8
1905
+ allocate
1906
+ x
1907
+ 8
1908
+ @options
1909
+ x
1910
+ 10
1911
+ initialize
1912
+ x
1913
+ 6
1914
+ invoke
1915
+ p
1916
+ 9
1917
+ I
1918
+ 0
1919
+ I
1920
+ 71
1921
+ I
1922
+ 1c
1923
+ I
1924
+ 72
1925
+ I
1926
+ 3e
1927
+ I
1928
+ 73
1929
+ I
1930
+ 46
1931
+ I
1932
+ 74
1933
+ I
1934
+ 80
1935
+ x
1936
+ 39
1937
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
1938
+ p
1939
+ 3
1940
+ x
1941
+ 10
1942
+ parameters
1943
+ x
1944
+ 7
1945
+ headers
1946
+ x
1947
+ 4
1948
+ body
1949
+ x
1950
+ 6
1951
+ delete
1952
+ M
1953
+ 1
1954
+ n
1955
+ n
1956
+ x
1957
+ 6
1958
+ delete
1959
+ i
1960
+ 72
1961
+ 23
1962
+ 0
1963
+ 10
1964
+ 14
1965
+ 44
1966
+ 43
1967
+ 0
1968
+ 78
1969
+ 49
1970
+ 1
1971
+ 1
1972
+ 19
1973
+ 0
1974
+ 15
1975
+ 23
1976
+ 1
1977
+ 10
1978
+ 28
1979
+ 44
1980
+ 43
1981
+ 0
1982
+ 78
1983
+ 49
1984
+ 1
1985
+ 1
1986
+ 19
1987
+ 1
1988
+ 15
1989
+ 45
1990
+ 2
1991
+ 3
1992
+ 43
1993
+ 4
1994
+ 13
1995
+ 71
1996
+ 5
1997
+ 47
1998
+ 9
1999
+ 58
2000
+ 47
2001
+ 49
2002
+ 6
2003
+ 0
2004
+ 13
2005
+ 5
2006
+ 20
2007
+ 0
2008
+ 20
2009
+ 1
2010
+ 39
2011
+ 7
2012
+ 47
2013
+ 49
2014
+ 8
2015
+ 4
2016
+ 15
2017
+ 8
2018
+ 68
2019
+ 5
2020
+ 20
2021
+ 0
2022
+ 20
2023
+ 1
2024
+ 39
2025
+ 7
2026
+ 49
2027
+ 5
2028
+ 4
2029
+ 49
2030
+ 9
2031
+ 0
2032
+ 11
2033
+ I
2034
+ 8
2035
+ I
2036
+ 2
2037
+ I
2038
+ 0
2039
+ I
2040
+ 2
2041
+ n
2042
+ p
2043
+ 10
2044
+ x
2045
+ 4
2046
+ Hash
2047
+ x
2048
+ 16
2049
+ new_from_literal
2050
+ x
2051
+ 4
2052
+ Http
2053
+ n
2054
+ x
2055
+ 6
2056
+ Delete
2057
+ x
2058
+ 3
2059
+ new
2060
+ x
2061
+ 8
2062
+ allocate
2063
+ x
2064
+ 8
2065
+ @options
2066
+ x
2067
+ 10
2068
+ initialize
2069
+ x
2070
+ 6
2071
+ invoke
2072
+ p
2073
+ 5
2074
+ I
2075
+ 0
2076
+ I
2077
+ 7b
2078
+ I
2079
+ 1c
2080
+ I
2081
+ 7c
2082
+ I
2083
+ 48
2084
+ x
2085
+ 39
2086
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
2087
+ p
2088
+ 2
2089
+ x
2090
+ 10
2091
+ parameters
2092
+ x
2093
+ 7
2094
+ headers
2095
+ x
2096
+ 7
2097
+ options
2098
+ M
2099
+ 1
2100
+ n
2101
+ n
2102
+ x
2103
+ 7
2104
+ options
2105
+ i
2106
+ 36
2107
+ 45
2108
+ 0
2109
+ 1
2110
+ 43
2111
+ 2
2112
+ 13
2113
+ 71
2114
+ 3
2115
+ 47
2116
+ 9
2117
+ 26
2118
+ 47
2119
+ 49
2120
+ 4
2121
+ 0
2122
+ 13
2123
+ 5
2124
+ 39
2125
+ 5
2126
+ 47
2127
+ 49
2128
+ 6
2129
+ 2
2130
+ 15
2131
+ 8
2132
+ 32
2133
+ 5
2134
+ 39
2135
+ 5
2136
+ 49
2137
+ 3
2138
+ 2
2139
+ 49
2140
+ 7
2141
+ 0
2142
+ 11
2143
+ I
2144
+ 4
2145
+ I
2146
+ 0
2147
+ I
2148
+ 0
2149
+ I
2150
+ 0
2151
+ n
2152
+ p
2153
+ 8
2154
+ x
2155
+ 4
2156
+ Http
2157
+ n
2158
+ x
2159
+ 7
2160
+ Options
2161
+ x
2162
+ 3
2163
+ new
2164
+ x
2165
+ 8
2166
+ allocate
2167
+ x
2168
+ 8
2169
+ @options
2170
+ x
2171
+ 10
2172
+ initialize
2173
+ x
2174
+ 6
2175
+ invoke
2176
+ p
2177
+ 5
2178
+ I
2179
+ 0
2180
+ I
2181
+ 81
2182
+ I
2183
+ 0
2184
+ I
2185
+ 82
2186
+ I
2187
+ 24
2188
+ x
2189
+ 39
2190
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
2191
+ p
2192
+ 0
2193
+ x
2194
+ 6
2195
+ https?
2196
+ M
2197
+ 1
2198
+ n
2199
+ n
2200
+ x
2201
+ 6
2202
+ https?
2203
+ i
2204
+ 11
2205
+ 39
2206
+ 0
2207
+ 45
2208
+ 1
2209
+ 2
2210
+ 43
2211
+ 3
2212
+ 49
2213
+ 4
2214
+ 1
2215
+ 11
2216
+ I
2217
+ 2
2218
+ I
2219
+ 0
2220
+ I
2221
+ 0
2222
+ I
2223
+ 0
2224
+ n
2225
+ p
2226
+ 5
2227
+ x
2228
+ 4
2229
+ @uri
2230
+ x
2231
+ 3
2232
+ URI
2233
+ n
2234
+ x
2235
+ 5
2236
+ HTTPS
2237
+ x
2238
+ 5
2239
+ is_a?
2240
+ p
2241
+ 5
2242
+ I
2243
+ 0
2244
+ I
2245
+ 85
2246
+ I
2247
+ 0
2248
+ I
2249
+ 86
2250
+ I
2251
+ b
2252
+ x
2253
+ 39
2254
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
2255
+ p
2256
+ 0
2257
+ x
2258
+ 9
2259
+ full_path
2260
+ M
2261
+ 1
2262
+ n
2263
+ n
2264
+ x
2265
+ 9
2266
+ full_path
2267
+ i
2268
+ 7
2269
+ 5
2270
+ 48
2271
+ 0
2272
+ 49
2273
+ 1
2274
+ 0
2275
+ 11
2276
+ I
2277
+ 1
2278
+ I
2279
+ 0
2280
+ I
2281
+ 0
2282
+ I
2283
+ 0
2284
+ n
2285
+ p
2286
+ 2
2287
+ x
2288
+ 3
2289
+ uri
2290
+ x
2291
+ 11
2292
+ request_uri
2293
+ p
2294
+ 5
2295
+ I
2296
+ 0
2297
+ I
2298
+ 8e
2299
+ I
2300
+ 0
2301
+ I
2302
+ 8f
2303
+ I
2304
+ 7
2305
+ x
2306
+ 39
2307
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
2308
+ p
2309
+ 0
2310
+ x
2311
+ 8
2312
+ protocol
2313
+ M
2314
+ 1
2315
+ n
2316
+ n
2317
+ x
2318
+ 8
2319
+ protocol
2320
+ i
2321
+ 7
2322
+ 5
2323
+ 48
2324
+ 0
2325
+ 49
2326
+ 1
2327
+ 0
2328
+ 11
2329
+ I
2330
+ 1
2331
+ I
2332
+ 0
2333
+ I
2334
+ 0
2335
+ I
2336
+ 0
2337
+ n
2338
+ p
2339
+ 2
2340
+ x
2341
+ 3
2342
+ uri
2343
+ x
2344
+ 6
2345
+ scheme
2346
+ p
2347
+ 5
2348
+ I
2349
+ 0
2350
+ I
2351
+ 92
2352
+ I
2353
+ 0
2354
+ I
2355
+ 93
2356
+ I
2357
+ 7
2358
+ x
2359
+ 39
2360
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
2361
+ p
2362
+ 0
2363
+ x
2364
+ 4
2365
+ host
2366
+ M
2367
+ 1
2368
+ n
2369
+ n
2370
+ x
2371
+ 4
2372
+ host
2373
+ i
2374
+ 7
2375
+ 5
2376
+ 48
2377
+ 0
2378
+ 49
2379
+ 1
2380
+ 0
2381
+ 11
2382
+ I
2383
+ 1
2384
+ I
2385
+ 0
2386
+ I
2387
+ 0
2388
+ I
2389
+ 0
2390
+ n
2391
+ p
2392
+ 2
2393
+ x
2394
+ 3
2395
+ uri
2396
+ x
2397
+ 4
2398
+ host
2399
+ p
2400
+ 5
2401
+ I
2402
+ 0
2403
+ I
2404
+ 96
2405
+ I
2406
+ 0
2407
+ I
2408
+ 97
2409
+ I
2410
+ 7
2411
+ x
2412
+ 39
2413
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
2414
+ p
2415
+ 0
2416
+ x
2417
+ 4
2418
+ port
2419
+ M
2420
+ 1
2421
+ n
2422
+ n
2423
+ x
2424
+ 4
2425
+ port
2426
+ i
2427
+ 7
2428
+ 5
2429
+ 48
2430
+ 0
2431
+ 49
2432
+ 1
2433
+ 0
2434
+ 11
2435
+ I
2436
+ 1
2437
+ I
2438
+ 0
2439
+ I
2440
+ 0
2441
+ I
2442
+ 0
2443
+ n
2444
+ p
2445
+ 2
2446
+ x
2447
+ 3
2448
+ uri
2449
+ x
2450
+ 4
2451
+ port
2452
+ p
2453
+ 5
2454
+ I
2455
+ 0
2456
+ I
2457
+ 9a
2458
+ I
2459
+ 0
2460
+ I
2461
+ 9b
2462
+ I
2463
+ 7
2464
+ x
2465
+ 39
2466
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
2467
+ p
2468
+ 0
2469
+ x
2470
+ 4
2471
+ Http
2472
+ n
2473
+ x
2474
+ 17
2475
+ ConnectionFactory
2476
+ x
2477
+ 7
2478
+ include
2479
+ p
2480
+ 41
2481
+ I
2482
+ 2
2483
+ I
2484
+ 19
2485
+ I
2486
+ 10
2487
+ I
2488
+ 1c
2489
+ I
2490
+ 1e
2491
+ I
2492
+ 33
2493
+ I
2494
+ 2c
2495
+ I
2496
+ 39
2497
+ I
2498
+ 3a
2499
+ I
2500
+ 3d
2501
+ I
2502
+ 48
2503
+ I
2504
+ 41
2505
+ I
2506
+ 56
2507
+ I
2508
+ 46
2509
+ I
2510
+ 64
2511
+ I
2512
+ 4d
2513
+ I
2514
+ 72
2515
+ I
2516
+ 55
2517
+ I
2518
+ 80
2519
+ I
2520
+ 5d
2521
+ I
2522
+ 8e
2523
+ I
2524
+ 66
2525
+ I
2526
+ 9c
2527
+ I
2528
+ 71
2529
+ I
2530
+ aa
2531
+ I
2532
+ 7b
2533
+ I
2534
+ b8
2535
+ I
2536
+ 81
2537
+ I
2538
+ c6
2539
+ I
2540
+ 85
2541
+ I
2542
+ d4
2543
+ I
2544
+ 8e
2545
+ I
2546
+ e2
2547
+ I
2548
+ 92
2549
+ I
2550
+ f0
2551
+ I
2552
+ 96
2553
+ I
2554
+ fe
2555
+ I
2556
+ 9a
2557
+ I
2558
+ 10c
2559
+ I
2560
+ 9e
2561
+ I
2562
+ 117
2563
+ x
2564
+ 39
2565
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
2566
+ p
2567
+ 0
2568
+ x
2569
+ 13
2570
+ attach_method
2571
+ p
2572
+ 3
2573
+ I
2574
+ 2
2575
+ I
2576
+ 18
2577
+ I
2578
+ 1d
2579
+ x
2580
+ 39
2581
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
2582
+ p
2583
+ 0
2584
+ x
2585
+ 13
2586
+ attach_method
2587
+ p
2588
+ 3
2589
+ I
2590
+ 0
2591
+ I
2592
+ a
2593
+ I
2594
+ 1c
2595
+ x
2596
+ 39
2597
+ /Users/sidu/Work/wrest/lib/wrest/uri.rb
2598
+ p
2599
+ 0