activesupport 3.0.6 → 3.0.7.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activesupport might be problematic. Click here for more details.

Files changed (186) hide show
  1. data/CHANGELOG +5 -0
  2. data/lib/active_support.rbc +1184 -0
  3. data/lib/active_support/all.rbc +85 -0
  4. data/lib/active_support/base64.rbc +578 -0
  5. data/lib/active_support/basic_object.rbc +536 -0
  6. data/lib/active_support/benchmarkable.rbc +885 -0
  7. data/lib/active_support/buffered_logger.rbc +2367 -0
  8. data/lib/active_support/cache.rbc +8453 -0
  9. data/lib/active_support/cache/file_store.rbc +4077 -0
  10. data/lib/active_support/cache/strategy/local_cache.rbc +2930 -0
  11. data/lib/active_support/callbacks.rbc +7817 -0
  12. data/lib/active_support/concern.rbc +729 -0
  13. data/lib/active_support/configurable.rbc +985 -0
  14. data/lib/active_support/core_ext.rbc +191 -0
  15. data/lib/active_support/core_ext/array.rbc +149 -0
  16. data/lib/active_support/core_ext/array/access.rbc +627 -0
  17. data/lib/active_support/core_ext/array/conversions.rbc +1922 -0
  18. data/lib/active_support/core_ext/array/extract_options.rbc +378 -0
  19. data/lib/active_support/core_ext/array/grouping.rbc +1121 -0
  20. data/lib/active_support/core_ext/array/random_access.rbc +745 -0
  21. data/lib/active_support/core_ext/array/uniq_by.rbc +444 -0
  22. data/lib/active_support/core_ext/array/wrap.rbc +226 -0
  23. data/lib/active_support/core_ext/benchmark.rbc +261 -0
  24. data/lib/active_support/core_ext/big_decimal.rbc +53 -0
  25. data/lib/active_support/core_ext/big_decimal/conversions.rbc +681 -0
  26. data/lib/active_support/core_ext/cgi.rbc +53 -0
  27. data/lib/active_support/core_ext/cgi/escape_skipping_slashes.rbc +666 -0
  28. data/lib/active_support/core_ext/class.rbc +117 -0
  29. data/lib/active_support/core_ext/class/attribute.rbc +566 -0
  30. data/lib/active_support/core_ext/class/attribute_accessors.rbc +940 -0
  31. data/lib/active_support/core_ext/class/delegating_attributes.rbc +1266 -0
  32. data/lib/active_support/core_ext/class/inheritable_attributes.rbc +3573 -0
  33. data/lib/active_support/core_ext/class/subclasses.rbc +1140 -0
  34. data/lib/active_support/core_ext/date/acts_like.rbc +193 -0
  35. data/lib/active_support/core_ext/date/calculations.rbc +4918 -0
  36. data/lib/active_support/core_ext/date/conversions.rbc +1178 -0
  37. data/lib/active_support/core_ext/date/freeze.rbc +545 -0
  38. data/lib/active_support/core_ext/date/zones.rbc +268 -0
  39. data/lib/active_support/core_ext/date_time/acts_like.rbc +253 -0
  40. data/lib/active_support/core_ext/date_time/calculations.rbc +2133 -0
  41. data/lib/active_support/core_ext/date_time/conversions.rbc +1548 -0
  42. data/lib/active_support/core_ext/date_time/zones.rbc +328 -0
  43. data/lib/active_support/core_ext/enumerable.rbc +1472 -0
  44. data/lib/active_support/core_ext/exception.rbc +160 -0
  45. data/lib/active_support/core_ext/file.rbc +69 -0
  46. data/lib/active_support/core_ext/file/atomic.rbc +730 -0
  47. data/lib/active_support/core_ext/file/path.rbc +161 -0
  48. data/lib/active_support/core_ext/float.rbc +53 -0
  49. data/lib/active_support/core_ext/float/rounding.rbc +284 -0
  50. data/lib/active_support/core_ext/hash.rbc +165 -0
  51. data/lib/active_support/core_ext/hash/conversions.rb +1 -1
  52. data/lib/active_support/core_ext/hash/conversions.rbc +2470 -0
  53. data/lib/active_support/core_ext/hash/deep_merge.rbc +409 -0
  54. data/lib/active_support/core_ext/hash/diff.rbc +344 -0
  55. data/lib/active_support/core_ext/hash/except.rbc +328 -0
  56. data/lib/active_support/core_ext/hash/indifferent_access.rbc +211 -0
  57. data/lib/active_support/core_ext/hash/keys.rbc +822 -0
  58. data/lib/active_support/core_ext/hash/reverse_merge.rbc +343 -0
  59. data/lib/active_support/core_ext/hash/slice.rbc +816 -0
  60. data/lib/active_support/core_ext/integer.rbc +85 -0
  61. data/lib/active_support/core_ext/integer/inflections.rbc +211 -0
  62. data/lib/active_support/core_ext/integer/multiple.rbc +214 -0
  63. data/lib/active_support/core_ext/integer/time.rbc +439 -0
  64. data/lib/active_support/core_ext/kernel.rbc +117 -0
  65. data/lib/active_support/core_ext/kernel/agnostics.rbc +304 -0
  66. data/lib/active_support/core_ext/kernel/debugger.rbc +489 -0
  67. data/lib/active_support/core_ext/kernel/reporting.rbc +1056 -0
  68. data/lib/active_support/core_ext/kernel/requires.rbc +461 -0
  69. data/lib/active_support/core_ext/kernel/singleton_class.rbc +309 -0
  70. data/lib/active_support/core_ext/load_error.rbc +575 -0
  71. data/lib/active_support/core_ext/logger.rbc +1654 -0
  72. data/lib/active_support/core_ext/module.rbc +229 -0
  73. data/lib/active_support/core_ext/module/aliasing.rbc +642 -0
  74. data/lib/active_support/core_ext/module/anonymous.rbc +204 -0
  75. data/lib/active_support/core_ext/module/attr_accessor_with_default.rbc +401 -0
  76. data/lib/active_support/core_ext/module/attr_internal.rbc +796 -0
  77. data/lib/active_support/core_ext/module/attribute_accessors.rbc +849 -0
  78. data/lib/active_support/core_ext/module/delegation.rbc +850 -0
  79. data/lib/active_support/core_ext/module/deprecation.rbc +219 -0
  80. data/lib/active_support/core_ext/module/introspection.rbc +1215 -0
  81. data/lib/active_support/core_ext/module/method_names.rbc +387 -0
  82. data/lib/active_support/core_ext/module/reachable.rbc +300 -0
  83. data/lib/active_support/core_ext/module/remove_method.rbc +350 -0
  84. data/lib/active_support/core_ext/module/synchronization.rbc +644 -0
  85. data/lib/active_support/core_ext/name_error.rbc +422 -0
  86. data/lib/active_support/core_ext/numeric.rbc +69 -0
  87. data/lib/active_support/core_ext/numeric/bytes.rbc +873 -0
  88. data/lib/active_support/core_ext/numeric/time.rbc +1299 -0
  89. data/lib/active_support/core_ext/object.rbc +213 -0
  90. data/lib/active_support/core_ext/object/acts_like.rbc +211 -0
  91. data/lib/active_support/core_ext/object/blank.rbc +1219 -0
  92. data/lib/active_support/core_ext/object/conversions.rbc +101 -0
  93. data/lib/active_support/core_ext/object/duplicable.rbc +1091 -0
  94. data/lib/active_support/core_ext/object/instance_variables.rbc +746 -0
  95. data/lib/active_support/core_ext/object/returning.rbc +222 -0
  96. data/lib/active_support/core_ext/object/to_json.rbc +259 -0
  97. data/lib/active_support/core_ext/object/to_param.rbc +1057 -0
  98. data/lib/active_support/core_ext/object/to_query.rbc +771 -0
  99. data/lib/active_support/core_ext/object/try.rbc +389 -0
  100. data/lib/active_support/core_ext/object/with_options.rbc +245 -0
  101. data/lib/active_support/core_ext/proc.rbc +416 -0
  102. data/lib/active_support/core_ext/process.rbc +53 -0
  103. data/lib/active_support/core_ext/process/daemon.rbc +466 -0
  104. data/lib/active_support/core_ext/range.rbc +101 -0
  105. data/lib/active_support/core_ext/range/blockless_step.rbc +551 -0
  106. data/lib/active_support/core_ext/range/conversions.rbc +447 -0
  107. data/lib/active_support/core_ext/range/include_range.rbc +340 -0
  108. data/lib/active_support/core_ext/range/overlaps.rbc +204 -0
  109. data/lib/active_support/core_ext/regexp.rbc +201 -0
  110. data/lib/active_support/core_ext/rexml.rbc +953 -0
  111. data/lib/active_support/core_ext/string.rbc +245 -0
  112. data/lib/active_support/core_ext/string/access.rbc +1254 -0
  113. data/lib/active_support/core_ext/string/behavior.rbc +174 -0
  114. data/lib/active_support/core_ext/string/conversions.rbc +964 -0
  115. data/lib/active_support/core_ext/string/encoding.rbc +295 -0
  116. data/lib/active_support/core_ext/string/exclude.rbc +192 -0
  117. data/lib/active_support/core_ext/string/filters.rbc +640 -0
  118. data/lib/active_support/core_ext/string/inflections.rbc +1320 -0
  119. data/lib/active_support/core_ext/string/interpolation.rbc +69 -0
  120. data/lib/active_support/core_ext/string/multibyte.rbc +690 -0
  121. data/lib/active_support/core_ext/string/output_safety.rbc +2035 -0
  122. data/lib/active_support/core_ext/string/starts_ends_with.rbc +151 -0
  123. data/lib/active_support/core_ext/string/strip.rbc +301 -0
  124. data/lib/active_support/core_ext/string/xchar.rbc +294 -0
  125. data/lib/active_support/core_ext/time/acts_like.rbc +193 -0
  126. data/lib/active_support/core_ext/time/calculations.rbc +5893 -0
  127. data/lib/active_support/core_ext/time/conversions.rbc +1193 -0
  128. data/lib/active_support/core_ext/time/marshal.rbc +1245 -0
  129. data/lib/active_support/core_ext/time/publicize_conversion_methods.rbc +259 -0
  130. data/lib/active_support/core_ext/time/zones.rbc +1061 -0
  131. data/lib/active_support/core_ext/uri.rbc +516 -0
  132. data/lib/active_support/dependencies.rbc +12236 -0
  133. data/lib/active_support/dependencies/autoload.rbc +1153 -0
  134. data/lib/active_support/deprecation.rbc +411 -0
  135. data/lib/active_support/deprecation/behaviors.rbc +1200 -0
  136. data/lib/active_support/deprecation/method_wrappers.rbc +628 -0
  137. data/lib/active_support/deprecation/proxy_wrappers.rbc +1925 -0
  138. data/lib/active_support/deprecation/reporting.rbc +1516 -0
  139. data/lib/active_support/descendants_tracker.rbc +1060 -0
  140. data/lib/active_support/duration.rbc +2432 -0
  141. data/lib/active_support/file_update_checker.rbc +595 -0
  142. data/lib/active_support/hash_with_indifferent_access.rbc +2560 -0
  143. data/lib/active_support/i18n.rbc +262 -0
  144. data/lib/active_support/i18n_railtie.rbc +1869 -0
  145. data/lib/active_support/inflections.rbc +2076 -0
  146. data/lib/active_support/inflector.rbc +117 -0
  147. data/lib/active_support/inflector/inflections.rbc +3699 -0
  148. data/lib/active_support/inflector/methods.rbc +1881 -0
  149. data/lib/active_support/inflector/transliterate.rbc +684 -0
  150. data/lib/active_support/json.rbc +69 -0
  151. data/lib/active_support/json/decoding.rbc +1045 -0
  152. data/lib/active_support/json/encoding.rbc +7108 -0
  153. data/lib/active_support/json/variable.rbc +392 -0
  154. data/lib/active_support/lazy_load_hooks.rbc +703 -0
  155. data/lib/active_support/log_subscriber.rbc +2081 -0
  156. data/lib/active_support/memoizable.rbc +2164 -0
  157. data/lib/active_support/multibyte.rbc +562 -0
  158. data/lib/active_support/multibyte/utils.rbc +1062 -0
  159. data/lib/active_support/notifications.rbc +1241 -0
  160. data/lib/active_support/notifications/fanout.rbc +1632 -0
  161. data/lib/active_support/notifications/instrumenter.rbc +1207 -0
  162. data/lib/active_support/option_merger.rbc +721 -0
  163. data/lib/active_support/ordered_hash.rbc +3808 -0
  164. data/lib/active_support/ordered_options.rbc +750 -0
  165. data/lib/active_support/railtie.rbc +1051 -0
  166. data/lib/active_support/rescuable.rbc +1389 -0
  167. data/lib/active_support/ruby/shim.rbc +229 -0
  168. data/lib/active_support/secure_random.rbc +0 -0
  169. data/lib/active_support/string_inquirer.rbc +332 -0
  170. data/lib/active_support/test_case.rbc +1002 -0
  171. data/lib/active_support/testing/assertions.rbc +1063 -0
  172. data/lib/active_support/testing/declarative.rbc +904 -0
  173. data/lib/active_support/testing/default.rbc +319 -0
  174. data/lib/active_support/testing/deprecation.rbc +1562 -0
  175. data/lib/active_support/testing/isolation.rbc +4048 -0
  176. data/lib/active_support/testing/pending.rbc +961 -0
  177. data/lib/active_support/testing/setup_and_teardown.rbc +2684 -0
  178. data/lib/active_support/time.rbc +574 -0
  179. data/lib/active_support/time_with_zone.rbc +5988 -0
  180. data/lib/active_support/values/time_zone.rbc +6915 -0
  181. data/lib/active_support/version.rb +2 -2
  182. data/lib/active_support/version.rbc +295 -0
  183. data/lib/active_support/whiny_nil.rbc +826 -0
  184. data/lib/active_support/xml_mini.rbc +4291 -0
  185. data/lib/active_support/xml_mini/rexml.rbc +1744 -0
  186. metadata +196 -10
@@ -0,0 +1,2930 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 46
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 99
32
+ 7
33
+ 3
34
+ 65
35
+ 49
36
+ 4
37
+ 2
38
+ 13
39
+ 99
40
+ 12
41
+ 7
42
+ 5
43
+ 12
44
+ 7
45
+ 6
46
+ 12
47
+ 65
48
+ 12
49
+ 49
50
+ 7
51
+ 4
52
+ 15
53
+ 49
54
+ 5
55
+ 0
56
+ 15
57
+ 2
58
+ 11
59
+ I
60
+ 6
61
+ I
62
+ 0
63
+ I
64
+ 0
65
+ I
66
+ 0
67
+ n
68
+ p
69
+ 8
70
+ s
71
+ 41
72
+ active_support/core_ext/object/duplicable
73
+ x
74
+ 7
75
+ require
76
+ s
77
+ 42
78
+ active_support/core_ext/string/inflections
79
+ x
80
+ 13
81
+ ActiveSupport
82
+ x
83
+ 11
84
+ open_module
85
+ x
86
+ 15
87
+ __module_init__
88
+ M
89
+ 1
90
+ n
91
+ n
92
+ x
93
+ 13
94
+ ActiveSupport
95
+ i
96
+ 28
97
+ 5
98
+ 66
99
+ 99
100
+ 7
101
+ 0
102
+ 65
103
+ 49
104
+ 1
105
+ 2
106
+ 13
107
+ 99
108
+ 12
109
+ 7
110
+ 2
111
+ 12
112
+ 7
113
+ 3
114
+ 12
115
+ 65
116
+ 12
117
+ 49
118
+ 4
119
+ 4
120
+ 15
121
+ 49
122
+ 2
123
+ 0
124
+ 11
125
+ I
126
+ 6
127
+ I
128
+ 0
129
+ I
130
+ 0
131
+ I
132
+ 0
133
+ n
134
+ p
135
+ 5
136
+ x
137
+ 5
138
+ Cache
139
+ x
140
+ 11
141
+ open_module
142
+ x
143
+ 15
144
+ __module_init__
145
+ M
146
+ 1
147
+ n
148
+ n
149
+ x
150
+ 5
151
+ Cache
152
+ i
153
+ 28
154
+ 5
155
+ 66
156
+ 99
157
+ 7
158
+ 0
159
+ 65
160
+ 49
161
+ 1
162
+ 2
163
+ 13
164
+ 99
165
+ 12
166
+ 7
167
+ 2
168
+ 12
169
+ 7
170
+ 3
171
+ 12
172
+ 65
173
+ 12
174
+ 49
175
+ 4
176
+ 4
177
+ 15
178
+ 49
179
+ 2
180
+ 0
181
+ 11
182
+ I
183
+ 6
184
+ I
185
+ 0
186
+ I
187
+ 0
188
+ I
189
+ 0
190
+ n
191
+ p
192
+ 5
193
+ x
194
+ 8
195
+ Strategy
196
+ x
197
+ 11
198
+ open_module
199
+ x
200
+ 15
201
+ __module_init__
202
+ M
203
+ 1
204
+ n
205
+ n
206
+ x
207
+ 8
208
+ Strategy
209
+ i
210
+ 28
211
+ 5
212
+ 66
213
+ 99
214
+ 7
215
+ 0
216
+ 65
217
+ 49
218
+ 1
219
+ 2
220
+ 13
221
+ 99
222
+ 12
223
+ 7
224
+ 2
225
+ 12
226
+ 7
227
+ 3
228
+ 12
229
+ 65
230
+ 12
231
+ 49
232
+ 4
233
+ 4
234
+ 15
235
+ 49
236
+ 2
237
+ 0
238
+ 11
239
+ I
240
+ 6
241
+ I
242
+ 0
243
+ I
244
+ 0
245
+ I
246
+ 0
247
+ n
248
+ p
249
+ 5
250
+ x
251
+ 10
252
+ LocalCache
253
+ x
254
+ 11
255
+ open_module
256
+ x
257
+ 15
258
+ __module_init__
259
+ M
260
+ 1
261
+ n
262
+ n
263
+ x
264
+ 10
265
+ LocalCache
266
+ i
267
+ 207
268
+ 5
269
+ 66
270
+ 99
271
+ 7
272
+ 0
273
+ 45
274
+ 1
275
+ 2
276
+ 65
277
+ 49
278
+ 3
279
+ 3
280
+ 13
281
+ 99
282
+ 12
283
+ 7
284
+ 4
285
+ 12
286
+ 7
287
+ 5
288
+ 12
289
+ 65
290
+ 12
291
+ 49
292
+ 6
293
+ 4
294
+ 15
295
+ 49
296
+ 4
297
+ 0
298
+ 15
299
+ 99
300
+ 7
301
+ 7
302
+ 7
303
+ 8
304
+ 65
305
+ 67
306
+ 49
307
+ 9
308
+ 0
309
+ 49
310
+ 10
311
+ 4
312
+ 15
313
+ 99
314
+ 7
315
+ 11
316
+ 7
317
+ 12
318
+ 65
319
+ 67
320
+ 49
321
+ 9
322
+ 0
323
+ 49
324
+ 10
325
+ 4
326
+ 15
327
+ 99
328
+ 7
329
+ 13
330
+ 7
331
+ 14
332
+ 65
333
+ 67
334
+ 49
335
+ 9
336
+ 0
337
+ 49
338
+ 10
339
+ 4
340
+ 15
341
+ 99
342
+ 7
343
+ 15
344
+ 7
345
+ 16
346
+ 65
347
+ 67
348
+ 49
349
+ 9
350
+ 0
351
+ 49
352
+ 10
353
+ 4
354
+ 15
355
+ 99
356
+ 7
357
+ 17
358
+ 7
359
+ 18
360
+ 65
361
+ 67
362
+ 49
363
+ 9
364
+ 0
365
+ 49
366
+ 10
367
+ 4
368
+ 15
369
+ 99
370
+ 7
371
+ 19
372
+ 7
373
+ 20
374
+ 65
375
+ 67
376
+ 49
377
+ 9
378
+ 0
379
+ 49
380
+ 10
381
+ 4
382
+ 15
383
+ 5
384
+ 48
385
+ 21
386
+ 15
387
+ 99
388
+ 7
389
+ 22
390
+ 7
391
+ 23
392
+ 65
393
+ 67
394
+ 49
395
+ 9
396
+ 0
397
+ 49
398
+ 10
399
+ 4
400
+ 15
401
+ 99
402
+ 7
403
+ 24
404
+ 7
405
+ 25
406
+ 65
407
+ 67
408
+ 49
409
+ 9
410
+ 0
411
+ 49
412
+ 10
413
+ 4
414
+ 15
415
+ 99
416
+ 7
417
+ 26
418
+ 7
419
+ 27
420
+ 65
421
+ 67
422
+ 49
423
+ 9
424
+ 0
425
+ 49
426
+ 10
427
+ 4
428
+ 15
429
+ 5
430
+ 48
431
+ 28
432
+ 15
433
+ 99
434
+ 7
435
+ 29
436
+ 7
437
+ 30
438
+ 65
439
+ 67
440
+ 49
441
+ 9
442
+ 0
443
+ 49
444
+ 10
445
+ 4
446
+ 15
447
+ 99
448
+ 7
449
+ 31
450
+ 7
451
+ 32
452
+ 65
453
+ 67
454
+ 49
455
+ 9
456
+ 0
457
+ 49
458
+ 10
459
+ 4
460
+ 15
461
+ 99
462
+ 7
463
+ 33
464
+ 7
465
+ 34
466
+ 65
467
+ 67
468
+ 49
469
+ 9
470
+ 0
471
+ 49
472
+ 10
473
+ 4
474
+ 11
475
+ I
476
+ 6
477
+ I
478
+ 0
479
+ I
480
+ 0
481
+ I
482
+ 0
483
+ n
484
+ p
485
+ 35
486
+ x
487
+ 10
488
+ LocalStore
489
+ x
490
+ 5
491
+ Store
492
+ n
493
+ x
494
+ 10
495
+ open_class
496
+ x
497
+ 14
498
+ __class_init__
499
+ M
500
+ 1
501
+ n
502
+ n
503
+ x
504
+ 10
505
+ LocalStore
506
+ i
507
+ 86
508
+ 5
509
+ 66
510
+ 99
511
+ 7
512
+ 0
513
+ 7
514
+ 1
515
+ 65
516
+ 67
517
+ 49
518
+ 2
519
+ 0
520
+ 49
521
+ 3
522
+ 4
523
+ 15
524
+ 99
525
+ 7
526
+ 4
527
+ 7
528
+ 5
529
+ 65
530
+ 67
531
+ 49
532
+ 2
533
+ 0
534
+ 49
535
+ 3
536
+ 4
537
+ 15
538
+ 99
539
+ 7
540
+ 6
541
+ 7
542
+ 7
543
+ 65
544
+ 67
545
+ 49
546
+ 2
547
+ 0
548
+ 49
549
+ 3
550
+ 4
551
+ 15
552
+ 99
553
+ 7
554
+ 8
555
+ 7
556
+ 9
557
+ 65
558
+ 67
559
+ 49
560
+ 2
561
+ 0
562
+ 49
563
+ 3
564
+ 4
565
+ 15
566
+ 99
567
+ 7
568
+ 10
569
+ 7
570
+ 11
571
+ 65
572
+ 67
573
+ 49
574
+ 2
575
+ 0
576
+ 49
577
+ 3
578
+ 4
579
+ 15
580
+ 99
581
+ 7
582
+ 12
583
+ 7
584
+ 13
585
+ 65
586
+ 67
587
+ 49
588
+ 2
589
+ 0
590
+ 49
591
+ 3
592
+ 4
593
+ 11
594
+ I
595
+ 5
596
+ I
597
+ 0
598
+ I
599
+ 0
600
+ I
601
+ 0
602
+ n
603
+ p
604
+ 14
605
+ x
606
+ 10
607
+ initialize
608
+ M
609
+ 1
610
+ n
611
+ n
612
+ x
613
+ 10
614
+ initialize
615
+ i
616
+ 14
617
+ 54
618
+ 89
619
+ 0
620
+ 15
621
+ 44
622
+ 43
623
+ 1
624
+ 78
625
+ 49
626
+ 2
627
+ 1
628
+ 38
629
+ 3
630
+ 11
631
+ I
632
+ 2
633
+ I
634
+ 0
635
+ I
636
+ 0
637
+ I
638
+ 0
639
+ n
640
+ p
641
+ 4
642
+ x
643
+ 10
644
+ initialize
645
+ x
646
+ 4
647
+ Hash
648
+ x
649
+ 16
650
+ new_from_literal
651
+ x
652
+ 5
653
+ @data
654
+ p
655
+ 7
656
+ I
657
+ -1
658
+ I
659
+ e
660
+ I
661
+ 0
662
+ I
663
+ f
664
+ I
665
+ 4
666
+ I
667
+ 10
668
+ I
669
+ e
670
+ x
671
+ 99
672
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
673
+ p
674
+ 0
675
+ x
676
+ 17
677
+ method_visibility
678
+ x
679
+ 15
680
+ add_defn_method
681
+ x
682
+ 11
683
+ synchronize
684
+ M
685
+ 1
686
+ n
687
+ n
688
+ x
689
+ 11
690
+ synchronize
691
+ i
692
+ 3
693
+ 60
694
+ 0
695
+ 11
696
+ I
697
+ 1
698
+ I
699
+ 0
700
+ I
701
+ 0
702
+ I
703
+ 0
704
+ n
705
+ p
706
+ 0
707
+ p
708
+ 5
709
+ I
710
+ -1
711
+ I
712
+ 14
713
+ I
714
+ 0
715
+ I
716
+ 15
717
+ I
718
+ 3
719
+ x
720
+ 99
721
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
722
+ p
723
+ 0
724
+ x
725
+ 5
726
+ clear
727
+ M
728
+ 1
729
+ n
730
+ n
731
+ x
732
+ 5
733
+ clear
734
+ i
735
+ 14
736
+ 23
737
+ 0
738
+ 10
739
+ 8
740
+ 1
741
+ 19
742
+ 0
743
+ 15
744
+ 39
745
+ 0
746
+ 49
747
+ 1
748
+ 0
749
+ 11
750
+ I
751
+ 2
752
+ I
753
+ 1
754
+ I
755
+ 0
756
+ I
757
+ 1
758
+ n
759
+ p
760
+ 2
761
+ x
762
+ 5
763
+ @data
764
+ x
765
+ 5
766
+ clear
767
+ p
768
+ 5
769
+ I
770
+ -1
771
+ I
772
+ 18
773
+ I
774
+ 8
775
+ I
776
+ 19
777
+ I
778
+ e
779
+ x
780
+ 99
781
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
782
+ p
783
+ 1
784
+ x
785
+ 7
786
+ options
787
+ x
788
+ 10
789
+ read_entry
790
+ M
791
+ 1
792
+ n
793
+ n
794
+ x
795
+ 10
796
+ read_entry
797
+ i
798
+ 8
799
+ 39
800
+ 0
801
+ 20
802
+ 0
803
+ 49
804
+ 1
805
+ 1
806
+ 11
807
+ I
808
+ 4
809
+ I
810
+ 2
811
+ I
812
+ 2
813
+ I
814
+ 2
815
+ n
816
+ p
817
+ 2
818
+ x
819
+ 5
820
+ @data
821
+ x
822
+ 2
823
+ []
824
+ p
825
+ 5
826
+ I
827
+ -1
828
+ I
829
+ 1c
830
+ I
831
+ 0
832
+ I
833
+ 1d
834
+ I
835
+ 8
836
+ x
837
+ 99
838
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
839
+ p
840
+ 2
841
+ x
842
+ 3
843
+ key
844
+ x
845
+ 7
846
+ options
847
+ x
848
+ 11
849
+ write_entry
850
+ M
851
+ 1
852
+ n
853
+ n
854
+ x
855
+ 11
856
+ write_entry
857
+ i
858
+ 16
859
+ 39
860
+ 0
861
+ 20
862
+ 0
863
+ 20
864
+ 1
865
+ 13
866
+ 18
867
+ 3
868
+ 49
869
+ 1
870
+ 2
871
+ 15
872
+ 15
873
+ 2
874
+ 11
875
+ I
876
+ 7
877
+ I
878
+ 3
879
+ I
880
+ 3
881
+ I
882
+ 3
883
+ n
884
+ p
885
+ 2
886
+ x
887
+ 5
888
+ @data
889
+ x
890
+ 3
891
+ []=
892
+ p
893
+ 7
894
+ I
895
+ -1
896
+ I
897
+ 20
898
+ I
899
+ 0
900
+ I
901
+ 21
902
+ I
903
+ e
904
+ I
905
+ 22
906
+ I
907
+ 10
908
+ x
909
+ 99
910
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
911
+ p
912
+ 3
913
+ x
914
+ 3
915
+ key
916
+ x
917
+ 5
918
+ value
919
+ x
920
+ 7
921
+ options
922
+ x
923
+ 12
924
+ delete_entry
925
+ M
926
+ 1
927
+ n
928
+ n
929
+ x
930
+ 12
931
+ delete_entry
932
+ i
933
+ 20
934
+ 39
935
+ 0
936
+ 20
937
+ 0
938
+ 49
939
+ 1
940
+ 1
941
+ 10
942
+ 12
943
+ 2
944
+ 8
945
+ 13
946
+ 3
947
+ 10
948
+ 18
949
+ 2
950
+ 8
951
+ 19
952
+ 3
953
+ 11
954
+ I
955
+ 4
956
+ I
957
+ 2
958
+ I
959
+ 2
960
+ I
961
+ 2
962
+ n
963
+ p
964
+ 2
965
+ x
966
+ 5
967
+ @data
968
+ x
969
+ 6
970
+ delete
971
+ p
972
+ 5
973
+ I
974
+ -1
975
+ I
976
+ 25
977
+ I
978
+ 0
979
+ I
980
+ 26
981
+ I
982
+ 14
983
+ x
984
+ 99
985
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
986
+ p
987
+ 2
988
+ x
989
+ 3
990
+ key
991
+ x
992
+ 7
993
+ options
994
+ p
995
+ 13
996
+ I
997
+ 2
998
+ I
999
+ e
1000
+ I
1001
+ 10
1002
+ I
1003
+ 14
1004
+ I
1005
+ 1e
1006
+ I
1007
+ 18
1008
+ I
1009
+ 2c
1010
+ I
1011
+ 1c
1012
+ I
1013
+ 3a
1014
+ I
1015
+ 20
1016
+ I
1017
+ 48
1018
+ I
1019
+ 25
1020
+ I
1021
+ 56
1022
+ x
1023
+ 99
1024
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
1025
+ p
1026
+ 0
1027
+ x
1028
+ 13
1029
+ attach_method
1030
+ x
1031
+ 16
1032
+ with_local_cache
1033
+ M
1034
+ 1
1035
+ n
1036
+ n
1037
+ x
1038
+ 16
1039
+ with_local_cache
1040
+ i
1041
+ 110
1042
+ 45
1043
+ 0
1044
+ 1
1045
+ 49
1046
+ 2
1047
+ 0
1048
+ 5
1049
+ 48
1050
+ 3
1051
+ 49
1052
+ 4
1053
+ 1
1054
+ 19
1055
+ 0
1056
+ 15
1057
+ 29
1058
+ 68
1059
+ 1
1060
+ 26
1061
+ 93
1062
+ 0
1063
+ 15
1064
+ 45
1065
+ 0
1066
+ 5
1067
+ 49
1068
+ 2
1069
+ 0
1070
+ 5
1071
+ 48
1072
+ 3
1073
+ 45
1074
+ 6
1075
+ 7
1076
+ 13
1077
+ 71
1078
+ 8
1079
+ 47
1080
+ 9
1081
+ 52
1082
+ 47
1083
+ 49
1084
+ 9
1085
+ 0
1086
+ 13
1087
+ 47
1088
+ 49
1089
+ 10
1090
+ 0
1091
+ 15
1092
+ 8
1093
+ 55
1094
+ 49
1095
+ 8
1096
+ 0
1097
+ 13
1098
+ 18
1099
+ 3
1100
+ 49
1101
+ 11
1102
+ 2
1103
+ 15
1104
+ 15
1105
+ 60
1106
+ 0
1107
+ 30
1108
+ 8
1109
+ 90
1110
+ 26
1111
+ 45
1112
+ 0
1113
+ 12
1114
+ 49
1115
+ 2
1116
+ 0
1117
+ 5
1118
+ 48
1119
+ 3
1120
+ 20
1121
+ 0
1122
+ 13
1123
+ 18
1124
+ 3
1125
+ 49
1126
+ 11
1127
+ 2
1128
+ 15
1129
+ 15
1130
+ 27
1131
+ 34
1132
+ 45
1133
+ 0
1134
+ 13
1135
+ 49
1136
+ 2
1137
+ 0
1138
+ 5
1139
+ 48
1140
+ 3
1141
+ 20
1142
+ 0
1143
+ 13
1144
+ 18
1145
+ 3
1146
+ 49
1147
+ 11
1148
+ 2
1149
+ 15
1150
+ 15
1151
+ 11
1152
+ I
1153
+ 7
1154
+ I
1155
+ 1
1156
+ I
1157
+ 0
1158
+ I
1159
+ 0
1160
+ n
1161
+ p
1162
+ 14
1163
+ x
1164
+ 6
1165
+ Thread
1166
+ n
1167
+ x
1168
+ 7
1169
+ current
1170
+ x
1171
+ 16
1172
+ thread_local_key
1173
+ x
1174
+ 2
1175
+ []
1176
+ n
1177
+ x
1178
+ 10
1179
+ LocalStore
1180
+ n
1181
+ x
1182
+ 3
1183
+ new
1184
+ x
1185
+ 8
1186
+ allocate
1187
+ x
1188
+ 10
1189
+ initialize
1190
+ x
1191
+ 3
1192
+ []=
1193
+ n
1194
+ n
1195
+ p
1196
+ 11
1197
+ I
1198
+ -1
1199
+ I
1200
+ 2b
1201
+ I
1202
+ 0
1203
+ I
1204
+ 2c
1205
+ I
1206
+ f
1207
+ I
1208
+ 2e
1209
+ I
1210
+ 3f
1211
+ I
1212
+ 2f
1213
+ I
1214
+ 45
1215
+ I
1216
+ 31
1217
+ I
1218
+ 6e
1219
+ x
1220
+ 99
1221
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
1222
+ p
1223
+ 1
1224
+ x
1225
+ 8
1226
+ save_val
1227
+ x
1228
+ 17
1229
+ method_visibility
1230
+ x
1231
+ 15
1232
+ add_defn_method
1233
+ x
1234
+ 10
1235
+ middleware
1236
+ M
1237
+ 1
1238
+ n
1239
+ n
1240
+ x
1241
+ 10
1242
+ middleware
1243
+ i
1244
+ 73
1245
+ 39
1246
+ 0
1247
+ 13
1248
+ 10
1249
+ 72
1250
+ 15
1251
+ 45
1252
+ 1
1253
+ 2
1254
+ 13
1255
+ 71
1256
+ 3
1257
+ 47
1258
+ 9
1259
+ 27
1260
+ 47
1261
+ 49
1262
+ 4
1263
+ 0
1264
+ 13
1265
+ 47
1266
+ 49
1267
+ 5
1268
+ 0
1269
+ 15
1270
+ 8
1271
+ 30
1272
+ 49
1273
+ 3
1274
+ 0
1275
+ 19
1276
+ 0
1277
+ 15
1278
+ 20
1279
+ 0
1280
+ 7
1281
+ 6
1282
+ 5
1283
+ 48
1284
+ 7
1285
+ 47
1286
+ 101
1287
+ 8
1288
+ 7
1289
+ 9
1290
+ 5
1291
+ 48
1292
+ 7
1293
+ 47
1294
+ 101
1295
+ 8
1296
+ 7
1297
+ 10
1298
+ 63
1299
+ 5
1300
+ 65
1301
+ 49
1302
+ 11
1303
+ 0
1304
+ 4
1305
+ 58
1306
+ 79
1307
+ 81
1308
+ 12
1309
+ 49
1310
+ 13
1311
+ 3
1312
+ 15
1313
+ 20
1314
+ 0
1315
+ 38
1316
+ 0
1317
+ 11
1318
+ I
1319
+ 7
1320
+ I
1321
+ 1
1322
+ I
1323
+ 0
1324
+ I
1325
+ 0
1326
+ n
1327
+ p
1328
+ 14
1329
+ x
1330
+ 11
1331
+ @middleware
1332
+ x
1333
+ 5
1334
+ Class
1335
+ n
1336
+ x
1337
+ 3
1338
+ new
1339
+ x
1340
+ 8
1341
+ allocate
1342
+ x
1343
+ 10
1344
+ initialize
1345
+ s
1346
+ 329
1347
+ class << self
1348
+ def name
1349
+ "ActiveSupport::Cache::Strategy::LocalCache"
1350
+ end
1351
+ alias :to_s :name
1352
+ end
1353
+
1354
+ def initialize(app)
1355
+ @app = app
1356
+ end
1357
+
1358
+ def call(env)
1359
+ Thread.current[:
1360
+ x
1361
+ 16
1362
+ thread_local_key
1363
+ x
1364
+ 4
1365
+ to_s
1366
+ s
1367
+ 103
1368
+ ] = LocalStore.new
1369
+ @app.call(env)
1370
+ ensure
1371
+ Thread.current[:
1372
+ s
1373
+ 26
1374
+ ] = nil
1375
+ end
1376
+
1377
+ x
1378
+ 11
1379
+ active_path
1380
+ x
1381
+ 1
1382
+ +
1383
+ x
1384
+ 10
1385
+ class_eval
1386
+ p
1387
+ 19
1388
+ I
1389
+ -1
1390
+ I
1391
+ 37
1392
+ I
1393
+ 0
1394
+ I
1395
+ 4e
1396
+ I
1397
+ 6
1398
+ I
1399
+ 39
1400
+ I
1401
+ 21
1402
+ I
1403
+ 3a
1404
+ I
1405
+ 23
1406
+ I
1407
+ 47
1408
+ I
1409
+ 2d
1410
+ I
1411
+ 4a
1412
+ I
1413
+ 37
1414
+ I
1415
+ 3a
1416
+ I
1417
+ 44
1418
+ I
1419
+ 4d
1420
+ I
1421
+ 46
1422
+ I
1423
+ 38
1424
+ I
1425
+ 49
1426
+ x
1427
+ 99
1428
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
1429
+ p
1430
+ 1
1431
+ x
1432
+ 5
1433
+ klass
1434
+ x
1435
+ 5
1436
+ clear
1437
+ M
1438
+ 1
1439
+ n
1440
+ n
1441
+ x
1442
+ 5
1443
+ clear
1444
+ i
1445
+ 29
1446
+ 23
1447
+ 0
1448
+ 10
1449
+ 8
1450
+ 1
1451
+ 19
1452
+ 0
1453
+ 15
1454
+ 5
1455
+ 48
1456
+ 0
1457
+ 9
1458
+ 23
1459
+ 5
1460
+ 48
1461
+ 0
1462
+ 20
1463
+ 0
1464
+ 49
1465
+ 1
1466
+ 1
1467
+ 8
1468
+ 24
1469
+ 1
1470
+ 15
1471
+ 54
1472
+ 89
1473
+ 1
1474
+ 11
1475
+ I
1476
+ 3
1477
+ I
1478
+ 1
1479
+ I
1480
+ 0
1481
+ I
1482
+ 1
1483
+ n
1484
+ p
1485
+ 2
1486
+ x
1487
+ 11
1488
+ local_cache
1489
+ x
1490
+ 5
1491
+ clear
1492
+ p
1493
+ 7
1494
+ I
1495
+ -1
1496
+ I
1497
+ 51
1498
+ I
1499
+ 8
1500
+ I
1501
+ 52
1502
+ I
1503
+ 19
1504
+ I
1505
+ 53
1506
+ I
1507
+ 1d
1508
+ x
1509
+ 99
1510
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
1511
+ p
1512
+ 1
1513
+ x
1514
+ 7
1515
+ options
1516
+ x
1517
+ 7
1518
+ cleanup
1519
+ M
1520
+ 1
1521
+ n
1522
+ n
1523
+ x
1524
+ 7
1525
+ cleanup
1526
+ i
1527
+ 29
1528
+ 23
1529
+ 0
1530
+ 10
1531
+ 8
1532
+ 1
1533
+ 19
1534
+ 0
1535
+ 15
1536
+ 5
1537
+ 48
1538
+ 0
1539
+ 9
1540
+ 23
1541
+ 5
1542
+ 48
1543
+ 0
1544
+ 20
1545
+ 0
1546
+ 49
1547
+ 1
1548
+ 1
1549
+ 8
1550
+ 24
1551
+ 1
1552
+ 15
1553
+ 54
1554
+ 89
1555
+ 2
1556
+ 11
1557
+ I
1558
+ 3
1559
+ I
1560
+ 1
1561
+ I
1562
+ 0
1563
+ I
1564
+ 1
1565
+ n
1566
+ p
1567
+ 3
1568
+ x
1569
+ 11
1570
+ local_cache
1571
+ x
1572
+ 5
1573
+ clear
1574
+ x
1575
+ 7
1576
+ cleanup
1577
+ p
1578
+ 7
1579
+ I
1580
+ -1
1581
+ I
1582
+ 56
1583
+ I
1584
+ 8
1585
+ I
1586
+ 57
1587
+ I
1588
+ 19
1589
+ I
1590
+ 58
1591
+ I
1592
+ 1d
1593
+ x
1594
+ 99
1595
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
1596
+ p
1597
+ 1
1598
+ x
1599
+ 7
1600
+ options
1601
+ x
1602
+ 9
1603
+ increment
1604
+ M
1605
+ 1
1606
+ n
1607
+ n
1608
+ x
1609
+ 9
1610
+ increment
1611
+ i
1612
+ 46
1613
+ 23
1614
+ 1
1615
+ 10
1616
+ 8
1617
+ 79
1618
+ 19
1619
+ 1
1620
+ 15
1621
+ 23
1622
+ 2
1623
+ 10
1624
+ 16
1625
+ 1
1626
+ 19
1627
+ 2
1628
+ 15
1629
+ 5
1630
+ 56
1631
+ 0
1632
+ 47
1633
+ 50
1634
+ 1
1635
+ 0
1636
+ 19
1637
+ 3
1638
+ 15
1639
+ 5
1640
+ 48
1641
+ 2
1642
+ 9
1643
+ 41
1644
+ 5
1645
+ 48
1646
+ 2
1647
+ 56
1648
+ 3
1649
+ 50
1650
+ 4
1651
+ 0
1652
+ 8
1653
+ 42
1654
+ 1
1655
+ 15
1656
+ 20
1657
+ 3
1658
+ 11
1659
+ I
1660
+ 6
1661
+ I
1662
+ 4
1663
+ I
1664
+ 1
1665
+ I
1666
+ 3
1667
+ n
1668
+ p
1669
+ 5
1670
+ M
1671
+ 1
1672
+ p
1673
+ 2
1674
+ x
1675
+ 9
1676
+ for_block
1677
+ t
1678
+ n
1679
+ x
1680
+ 9
1681
+ increment
1682
+ i
1683
+ 4
1684
+ 54
1685
+ 89
1686
+ 0
1687
+ 11
1688
+ I
1689
+ 2
1690
+ I
1691
+ 0
1692
+ I
1693
+ 0
1694
+ I
1695
+ 0
1696
+ I
1697
+ -2
1698
+ p
1699
+ 1
1700
+ x
1701
+ 9
1702
+ increment
1703
+ p
1704
+ 3
1705
+ I
1706
+ 0
1707
+ I
1708
+ 5c
1709
+ I
1710
+ 4
1711
+ x
1712
+ 99
1713
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
1714
+ p
1715
+ 0
1716
+ x
1717
+ 18
1718
+ bypass_local_cache
1719
+ x
1720
+ 11
1721
+ local_cache
1722
+ M
1723
+ 1
1724
+ p
1725
+ 2
1726
+ x
1727
+ 9
1728
+ for_block
1729
+ t
1730
+ n
1731
+ x
1732
+ 9
1733
+ increment
1734
+ i
1735
+ 35
1736
+ 21
1737
+ 1
1738
+ 3
1739
+ 9
1740
+ 22
1741
+ 5
1742
+ 48
1743
+ 0
1744
+ 21
1745
+ 1
1746
+ 0
1747
+ 21
1748
+ 1
1749
+ 3
1750
+ 21
1751
+ 1
1752
+ 2
1753
+ 49
1754
+ 1
1755
+ 3
1756
+ 8
1757
+ 34
1758
+ 5
1759
+ 48
1760
+ 0
1761
+ 21
1762
+ 1
1763
+ 0
1764
+ 21
1765
+ 1
1766
+ 2
1767
+ 49
1768
+ 2
1769
+ 2
1770
+ 11
1771
+ I
1772
+ 5
1773
+ I
1774
+ 0
1775
+ I
1776
+ 0
1777
+ I
1778
+ 0
1779
+ I
1780
+ -2
1781
+ p
1782
+ 3
1783
+ x
1784
+ 11
1785
+ local_cache
1786
+ x
1787
+ 5
1788
+ write
1789
+ x
1790
+ 6
1791
+ delete
1792
+ p
1793
+ 7
1794
+ I
1795
+ 0
1796
+ I
1797
+ 5f
1798
+ I
1799
+ 5
1800
+ I
1801
+ 60
1802
+ I
1803
+ 16
1804
+ I
1805
+ 62
1806
+ I
1807
+ 23
1808
+ x
1809
+ 99
1810
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
1811
+ p
1812
+ 0
1813
+ x
1814
+ 4
1815
+ mute
1816
+ p
1817
+ 13
1818
+ I
1819
+ -1
1820
+ I
1821
+ 5b
1822
+ I
1823
+ 10
1824
+ I
1825
+ 5c
1826
+ I
1827
+ 1a
1828
+ I
1829
+ 5d
1830
+ I
1831
+ 1f
1832
+ I
1833
+ 5e
1834
+ I
1835
+ 29
1836
+ I
1837
+ 5d
1838
+ I
1839
+ 2b
1840
+ I
1841
+ 66
1842
+ I
1843
+ 2e
1844
+ x
1845
+ 99
1846
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
1847
+ p
1848
+ 4
1849
+ x
1850
+ 4
1851
+ name
1852
+ x
1853
+ 6
1854
+ amount
1855
+ x
1856
+ 7
1857
+ options
1858
+ x
1859
+ 5
1860
+ value
1861
+ x
1862
+ 9
1863
+ decrement
1864
+ M
1865
+ 1
1866
+ n
1867
+ n
1868
+ x
1869
+ 9
1870
+ decrement
1871
+ i
1872
+ 46
1873
+ 23
1874
+ 1
1875
+ 10
1876
+ 8
1877
+ 79
1878
+ 19
1879
+ 1
1880
+ 15
1881
+ 23
1882
+ 2
1883
+ 10
1884
+ 16
1885
+ 1
1886
+ 19
1887
+ 2
1888
+ 15
1889
+ 5
1890
+ 56
1891
+ 0
1892
+ 47
1893
+ 50
1894
+ 1
1895
+ 0
1896
+ 19
1897
+ 3
1898
+ 15
1899
+ 5
1900
+ 48
1901
+ 2
1902
+ 9
1903
+ 41
1904
+ 5
1905
+ 48
1906
+ 2
1907
+ 56
1908
+ 3
1909
+ 50
1910
+ 4
1911
+ 0
1912
+ 8
1913
+ 42
1914
+ 1
1915
+ 15
1916
+ 20
1917
+ 3
1918
+ 11
1919
+ I
1920
+ 6
1921
+ I
1922
+ 4
1923
+ I
1924
+ 1
1925
+ I
1926
+ 3
1927
+ n
1928
+ p
1929
+ 5
1930
+ M
1931
+ 1
1932
+ p
1933
+ 2
1934
+ x
1935
+ 9
1936
+ for_block
1937
+ t
1938
+ n
1939
+ x
1940
+ 9
1941
+ decrement
1942
+ i
1943
+ 4
1944
+ 54
1945
+ 89
1946
+ 0
1947
+ 11
1948
+ I
1949
+ 2
1950
+ I
1951
+ 0
1952
+ I
1953
+ 0
1954
+ I
1955
+ 0
1956
+ I
1957
+ -2
1958
+ p
1959
+ 1
1960
+ x
1961
+ 9
1962
+ decrement
1963
+ p
1964
+ 3
1965
+ I
1966
+ 0
1967
+ I
1968
+ 6a
1969
+ I
1970
+ 4
1971
+ x
1972
+ 99
1973
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
1974
+ p
1975
+ 0
1976
+ x
1977
+ 18
1978
+ bypass_local_cache
1979
+ x
1980
+ 11
1981
+ local_cache
1982
+ M
1983
+ 1
1984
+ p
1985
+ 2
1986
+ x
1987
+ 9
1988
+ for_block
1989
+ t
1990
+ n
1991
+ x
1992
+ 9
1993
+ decrement
1994
+ i
1995
+ 35
1996
+ 21
1997
+ 1
1998
+ 3
1999
+ 9
2000
+ 22
2001
+ 5
2002
+ 48
2003
+ 0
2004
+ 21
2005
+ 1
2006
+ 0
2007
+ 21
2008
+ 1
2009
+ 3
2010
+ 21
2011
+ 1
2012
+ 2
2013
+ 49
2014
+ 1
2015
+ 3
2016
+ 8
2017
+ 34
2018
+ 5
2019
+ 48
2020
+ 0
2021
+ 21
2022
+ 1
2023
+ 0
2024
+ 21
2025
+ 1
2026
+ 2
2027
+ 49
2028
+ 2
2029
+ 2
2030
+ 11
2031
+ I
2032
+ 5
2033
+ I
2034
+ 0
2035
+ I
2036
+ 0
2037
+ I
2038
+ 0
2039
+ I
2040
+ -2
2041
+ p
2042
+ 3
2043
+ x
2044
+ 11
2045
+ local_cache
2046
+ x
2047
+ 5
2048
+ write
2049
+ x
2050
+ 6
2051
+ delete
2052
+ p
2053
+ 7
2054
+ I
2055
+ 0
2056
+ I
2057
+ 6d
2058
+ I
2059
+ 5
2060
+ I
2061
+ 6e
2062
+ I
2063
+ 16
2064
+ I
2065
+ 70
2066
+ I
2067
+ 23
2068
+ x
2069
+ 99
2070
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2071
+ p
2072
+ 0
2073
+ x
2074
+ 4
2075
+ mute
2076
+ p
2077
+ 13
2078
+ I
2079
+ -1
2080
+ I
2081
+ 69
2082
+ I
2083
+ 10
2084
+ I
2085
+ 6a
2086
+ I
2087
+ 1a
2088
+ I
2089
+ 6b
2090
+ I
2091
+ 1f
2092
+ I
2093
+ 6c
2094
+ I
2095
+ 29
2096
+ I
2097
+ 6b
2098
+ I
2099
+ 2b
2100
+ I
2101
+ 74
2102
+ I
2103
+ 2e
2104
+ x
2105
+ 99
2106
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2107
+ p
2108
+ 4
2109
+ x
2110
+ 4
2111
+ name
2112
+ x
2113
+ 6
2114
+ amount
2115
+ x
2116
+ 7
2117
+ options
2118
+ x
2119
+ 5
2120
+ value
2121
+ x
2122
+ 9
2123
+ protected
2124
+ x
2125
+ 10
2126
+ read_entry
2127
+ M
2128
+ 1
2129
+ n
2130
+ n
2131
+ x
2132
+ 10
2133
+ read_entry
2134
+ i
2135
+ 52
2136
+ 5
2137
+ 48
2138
+ 0
2139
+ 9
2140
+ 48
2141
+ 5
2142
+ 48
2143
+ 0
2144
+ 20
2145
+ 0
2146
+ 20
2147
+ 1
2148
+ 49
2149
+ 1
2150
+ 2
2151
+ 19
2152
+ 2
2153
+ 15
2154
+ 20
2155
+ 2
2156
+ 9
2157
+ 25
2158
+ 1
2159
+ 8
2160
+ 43
2161
+ 54
2162
+ 89
2163
+ 1
2164
+ 19
2165
+ 2
2166
+ 15
2167
+ 5
2168
+ 48
2169
+ 0
2170
+ 20
2171
+ 0
2172
+ 20
2173
+ 2
2174
+ 20
2175
+ 1
2176
+ 49
2177
+ 2
2178
+ 3
2179
+ 15
2180
+ 20
2181
+ 2
2182
+ 8
2183
+ 51
2184
+ 54
2185
+ 89
2186
+ 1
2187
+ 11
2188
+ I
2189
+ 7
2190
+ I
2191
+ 3
2192
+ I
2193
+ 2
2194
+ I
2195
+ 2
2196
+ n
2197
+ p
2198
+ 3
2199
+ x
2200
+ 11
2201
+ local_cache
2202
+ x
2203
+ 10
2204
+ read_entry
2205
+ x
2206
+ 11
2207
+ write_entry
2208
+ p
2209
+ 17
2210
+ I
2211
+ -1
2212
+ I
2213
+ 78
2214
+ I
2215
+ 0
2216
+ I
2217
+ 79
2218
+ I
2219
+ 5
2220
+ I
2221
+ 7a
2222
+ I
2223
+ 12
2224
+ I
2225
+ 7b
2226
+ I
2227
+ 19
2228
+ I
2229
+ 7c
2230
+ I
2231
+ 1f
2232
+ I
2233
+ 7d
2234
+ I
2235
+ 2c
2236
+ I
2237
+ 7f
2238
+ I
2239
+ 30
2240
+ I
2241
+ 81
2242
+ I
2243
+ 34
2244
+ x
2245
+ 99
2246
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2247
+ p
2248
+ 3
2249
+ x
2250
+ 3
2251
+ key
2252
+ x
2253
+ 7
2254
+ options
2255
+ x
2256
+ 5
2257
+ entry
2258
+ x
2259
+ 11
2260
+ write_entry
2261
+ M
2262
+ 1
2263
+ n
2264
+ n
2265
+ x
2266
+ 11
2267
+ write_entry
2268
+ i
2269
+ 25
2270
+ 5
2271
+ 48
2272
+ 0
2273
+ 9
2274
+ 19
2275
+ 5
2276
+ 48
2277
+ 0
2278
+ 20
2279
+ 0
2280
+ 20
2281
+ 1
2282
+ 20
2283
+ 2
2284
+ 49
2285
+ 1
2286
+ 3
2287
+ 8
2288
+ 20
2289
+ 1
2290
+ 15
2291
+ 54
2292
+ 89
2293
+ 1
2294
+ 11
2295
+ I
2296
+ 7
2297
+ I
2298
+ 3
2299
+ I
2300
+ 3
2301
+ I
2302
+ 3
2303
+ n
2304
+ p
2305
+ 2
2306
+ x
2307
+ 11
2308
+ local_cache
2309
+ x
2310
+ 11
2311
+ write_entry
2312
+ p
2313
+ 7
2314
+ I
2315
+ -1
2316
+ I
2317
+ 85
2318
+ I
2319
+ 0
2320
+ I
2321
+ 86
2322
+ I
2323
+ 15
2324
+ I
2325
+ 87
2326
+ I
2327
+ 19
2328
+ x
2329
+ 99
2330
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2331
+ p
2332
+ 3
2333
+ x
2334
+ 3
2335
+ key
2336
+ x
2337
+ 5
2338
+ entry
2339
+ x
2340
+ 7
2341
+ options
2342
+ x
2343
+ 12
2344
+ delete_entry
2345
+ M
2346
+ 1
2347
+ n
2348
+ n
2349
+ x
2350
+ 12
2351
+ delete_entry
2352
+ i
2353
+ 23
2354
+ 5
2355
+ 48
2356
+ 0
2357
+ 9
2358
+ 17
2359
+ 5
2360
+ 48
2361
+ 0
2362
+ 20
2363
+ 0
2364
+ 20
2365
+ 1
2366
+ 49
2367
+ 1
2368
+ 2
2369
+ 8
2370
+ 18
2371
+ 1
2372
+ 15
2373
+ 54
2374
+ 89
2375
+ 1
2376
+ 11
2377
+ I
2378
+ 5
2379
+ I
2380
+ 2
2381
+ I
2382
+ 2
2383
+ I
2384
+ 2
2385
+ n
2386
+ p
2387
+ 2
2388
+ x
2389
+ 11
2390
+ local_cache
2391
+ x
2392
+ 12
2393
+ delete_entry
2394
+ p
2395
+ 7
2396
+ I
2397
+ -1
2398
+ I
2399
+ 8a
2400
+ I
2401
+ 0
2402
+ I
2403
+ 8b
2404
+ I
2405
+ 13
2406
+ I
2407
+ 8c
2408
+ I
2409
+ 17
2410
+ x
2411
+ 99
2412
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2413
+ p
2414
+ 2
2415
+ x
2416
+ 3
2417
+ key
2418
+ x
2419
+ 7
2420
+ options
2421
+ x
2422
+ 7
2423
+ private
2424
+ x
2425
+ 16
2426
+ thread_local_key
2427
+ M
2428
+ 1
2429
+ n
2430
+ n
2431
+ x
2432
+ 16
2433
+ thread_local_key
2434
+ i
2435
+ 59
2436
+ 39
2437
+ 0
2438
+ 13
2439
+ 10
2440
+ 58
2441
+ 15
2442
+ 5
2443
+ 49
2444
+ 1
2445
+ 0
2446
+ 49
2447
+ 2
2448
+ 0
2449
+ 49
2450
+ 3
2451
+ 0
2452
+ 47
2453
+ 101
2454
+ 4
2455
+ 7
2456
+ 5
2457
+ 5
2458
+ 48
2459
+ 6
2460
+ 47
2461
+ 101
2462
+ 4
2463
+ 63
2464
+ 3
2465
+ 7
2466
+ 7
2467
+ 13
2468
+ 70
2469
+ 9
2470
+ 47
2471
+ 15
2472
+ 44
2473
+ 43
2474
+ 8
2475
+ 7
2476
+ 9
2477
+ 78
2478
+ 49
2479
+ 10
2480
+ 2
2481
+ 6
2482
+ 7
2483
+ 7
2484
+ 11
2485
+ 64
2486
+ 49
2487
+ 12
2488
+ 2
2489
+ 49
2490
+ 13
2491
+ 0
2492
+ 38
2493
+ 0
2494
+ 11
2495
+ I
2496
+ 4
2497
+ I
2498
+ 0
2499
+ I
2500
+ 0
2501
+ I
2502
+ 0
2503
+ n
2504
+ p
2505
+ 14
2506
+ x
2507
+ 17
2508
+ @thread_local_key
2509
+ x
2510
+ 5
2511
+ class
2512
+ x
2513
+ 4
2514
+ name
2515
+ x
2516
+ 10
2517
+ underscore
2518
+ x
2519
+ 4
2520
+ to_s
2521
+ s
2522
+ 13
2523
+ _local_cache_
2524
+ x
2525
+ 9
2526
+ object_id
2527
+ n
2528
+ x
2529
+ 6
2530
+ Regexp
2531
+ s
2532
+ 5
2533
+ [\/-]
2534
+ x
2535
+ 3
2536
+ new
2537
+ s
2538
+ 1
2539
+ _
2540
+ x
2541
+ 4
2542
+ gsub
2543
+ x
2544
+ 6
2545
+ to_sym
2546
+ p
2547
+ 5
2548
+ I
2549
+ -1
2550
+ I
2551
+ 90
2552
+ I
2553
+ 0
2554
+ I
2555
+ 91
2556
+ I
2557
+ 3b
2558
+ x
2559
+ 99
2560
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2561
+ p
2562
+ 0
2563
+ x
2564
+ 11
2565
+ local_cache
2566
+ M
2567
+ 1
2568
+ n
2569
+ n
2570
+ x
2571
+ 11
2572
+ local_cache
2573
+ i
2574
+ 13
2575
+ 45
2576
+ 0
2577
+ 1
2578
+ 49
2579
+ 2
2580
+ 0
2581
+ 5
2582
+ 48
2583
+ 3
2584
+ 49
2585
+ 4
2586
+ 1
2587
+ 11
2588
+ I
2589
+ 2
2590
+ I
2591
+ 0
2592
+ I
2593
+ 0
2594
+ I
2595
+ 0
2596
+ n
2597
+ p
2598
+ 5
2599
+ x
2600
+ 6
2601
+ Thread
2602
+ n
2603
+ x
2604
+ 7
2605
+ current
2606
+ x
2607
+ 16
2608
+ thread_local_key
2609
+ x
2610
+ 2
2611
+ []
2612
+ p
2613
+ 5
2614
+ I
2615
+ -1
2616
+ I
2617
+ 94
2618
+ I
2619
+ 0
2620
+ I
2621
+ 95
2622
+ I
2623
+ d
2624
+ x
2625
+ 99
2626
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2627
+ p
2628
+ 0
2629
+ x
2630
+ 18
2631
+ bypass_local_cache
2632
+ M
2633
+ 1
2634
+ n
2635
+ n
2636
+ x
2637
+ 18
2638
+ bypass_local_cache
2639
+ i
2640
+ 87
2641
+ 45
2642
+ 0
2643
+ 1
2644
+ 49
2645
+ 2
2646
+ 0
2647
+ 5
2648
+ 48
2649
+ 3
2650
+ 49
2651
+ 4
2652
+ 1
2653
+ 19
2654
+ 0
2655
+ 15
2656
+ 29
2657
+ 45
2658
+ 1
2659
+ 26
2660
+ 93
2661
+ 0
2662
+ 15
2663
+ 45
2664
+ 0
2665
+ 5
2666
+ 49
2667
+ 2
2668
+ 0
2669
+ 5
2670
+ 48
2671
+ 3
2672
+ 1
2673
+ 13
2674
+ 18
2675
+ 3
2676
+ 49
2677
+ 6
2678
+ 2
2679
+ 15
2680
+ 15
2681
+ 60
2682
+ 0
2683
+ 30
2684
+ 8
2685
+ 67
2686
+ 26
2687
+ 45
2688
+ 0
2689
+ 7
2690
+ 49
2691
+ 2
2692
+ 0
2693
+ 5
2694
+ 48
2695
+ 3
2696
+ 20
2697
+ 0
2698
+ 13
2699
+ 18
2700
+ 3
2701
+ 49
2702
+ 6
2703
+ 2
2704
+ 15
2705
+ 15
2706
+ 27
2707
+ 34
2708
+ 45
2709
+ 0
2710
+ 8
2711
+ 49
2712
+ 2
2713
+ 0
2714
+ 5
2715
+ 48
2716
+ 3
2717
+ 20
2718
+ 0
2719
+ 13
2720
+ 18
2721
+ 3
2722
+ 49
2723
+ 6
2724
+ 2
2725
+ 15
2726
+ 15
2727
+ 11
2728
+ I
2729
+ 7
2730
+ I
2731
+ 1
2732
+ I
2733
+ 0
2734
+ I
2735
+ 0
2736
+ n
2737
+ p
2738
+ 9
2739
+ x
2740
+ 6
2741
+ Thread
2742
+ n
2743
+ x
2744
+ 7
2745
+ current
2746
+ x
2747
+ 16
2748
+ thread_local_key
2749
+ x
2750
+ 2
2751
+ []
2752
+ n
2753
+ x
2754
+ 3
2755
+ []=
2756
+ n
2757
+ n
2758
+ p
2759
+ 11
2760
+ I
2761
+ -1
2762
+ I
2763
+ 98
2764
+ I
2765
+ 0
2766
+ I
2767
+ 99
2768
+ I
2769
+ f
2770
+ I
2771
+ 9b
2772
+ I
2773
+ 28
2774
+ I
2775
+ 9c
2776
+ I
2777
+ 2e
2778
+ I
2779
+ 9e
2780
+ I
2781
+ 57
2782
+ x
2783
+ 99
2784
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2785
+ p
2786
+ 1
2787
+ x
2788
+ 10
2789
+ save_cache
2790
+ p
2791
+ 31
2792
+ I
2793
+ 2
2794
+ I
2795
+ d
2796
+ I
2797
+ 1f
2798
+ I
2799
+ 2b
2800
+ I
2801
+ 2d
2802
+ I
2803
+ 37
2804
+ I
2805
+ 3b
2806
+ I
2807
+ 51
2808
+ I
2809
+ 49
2810
+ I
2811
+ 56
2812
+ I
2813
+ 57
2814
+ I
2815
+ 5b
2816
+ I
2817
+ 65
2818
+ I
2819
+ 69
2820
+ I
2821
+ 73
2822
+ I
2823
+ 77
2824
+ I
2825
+ 77
2826
+ I
2827
+ 78
2828
+ I
2829
+ 85
2830
+ I
2831
+ 85
2832
+ I
2833
+ 93
2834
+ I
2835
+ 8a
2836
+ I
2837
+ a1
2838
+ I
2839
+ 8f
2840
+ I
2841
+ a5
2842
+ I
2843
+ 90
2844
+ I
2845
+ b3
2846
+ I
2847
+ 94
2848
+ I
2849
+ c1
2850
+ I
2851
+ 98
2852
+ I
2853
+ cf
2854
+ x
2855
+ 99
2856
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2857
+ p
2858
+ 0
2859
+ x
2860
+ 13
2861
+ attach_method
2862
+ p
2863
+ 3
2864
+ I
2865
+ 2
2866
+ I
2867
+ a
2868
+ I
2869
+ 1c
2870
+ x
2871
+ 99
2872
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2873
+ p
2874
+ 0
2875
+ x
2876
+ 13
2877
+ attach_method
2878
+ p
2879
+ 3
2880
+ I
2881
+ 2
2882
+ I
2883
+ 6
2884
+ I
2885
+ 1c
2886
+ x
2887
+ 99
2888
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2889
+ p
2890
+ 0
2891
+ x
2892
+ 13
2893
+ attach_method
2894
+ p
2895
+ 3
2896
+ I
2897
+ 2
2898
+ I
2899
+ 5
2900
+ I
2901
+ 1c
2902
+ x
2903
+ 99
2904
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2905
+ p
2906
+ 0
2907
+ x
2908
+ 13
2909
+ attach_method
2910
+ p
2911
+ 7
2912
+ I
2913
+ 0
2914
+ I
2915
+ 1
2916
+ I
2917
+ 9
2918
+ I
2919
+ 2
2920
+ I
2921
+ 12
2922
+ I
2923
+ 4
2924
+ I
2925
+ 2e
2926
+ x
2927
+ 99
2928
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb
2929
+ p
2930
+ 0