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,2164 @@
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
+ 46
72
+ active_support/core_ext/kernel/singleton_class
73
+ x
74
+ 7
75
+ require
76
+ s
77
+ 39
78
+ active_support/core_ext/module/aliasing
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
+ 10
138
+ Memoizable
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
+ 10
151
+ Memoizable
152
+ i
153
+ 53
154
+ 5
155
+ 66
156
+ 99
157
+ 7
158
+ 0
159
+ 7
160
+ 1
161
+ 65
162
+ 5
163
+ 49
164
+ 2
165
+ 4
166
+ 15
167
+ 99
168
+ 7
169
+ 3
170
+ 65
171
+ 49
172
+ 4
173
+ 2
174
+ 13
175
+ 99
176
+ 12
177
+ 7
178
+ 5
179
+ 12
180
+ 7
181
+ 6
182
+ 12
183
+ 65
184
+ 12
185
+ 49
186
+ 2
187
+ 4
188
+ 15
189
+ 49
190
+ 5
191
+ 0
192
+ 15
193
+ 99
194
+ 7
195
+ 7
196
+ 7
197
+ 8
198
+ 65
199
+ 67
200
+ 49
201
+ 9
202
+ 0
203
+ 49
204
+ 10
205
+ 4
206
+ 11
207
+ I
208
+ 6
209
+ I
210
+ 0
211
+ I
212
+ 0
213
+ I
214
+ 0
215
+ n
216
+ p
217
+ 11
218
+ x
219
+ 17
220
+ memoized_ivar_for
221
+ M
222
+ 1
223
+ n
224
+ n
225
+ x
226
+ 17
227
+ memoized_ivar_for
228
+ i
229
+ 64
230
+ 7
231
+ 0
232
+ 20
233
+ 0
234
+ 49
235
+ 1
236
+ 0
237
+ 7
238
+ 2
239
+ 13
240
+ 70
241
+ 9
242
+ 25
243
+ 15
244
+ 44
245
+ 43
246
+ 3
247
+ 7
248
+ 4
249
+ 78
250
+ 49
251
+ 5
252
+ 2
253
+ 6
254
+ 2
255
+ 7
256
+ 6
257
+ 64
258
+ 49
259
+ 7
260
+ 2
261
+ 7
262
+ 8
263
+ 13
264
+ 70
265
+ 9
266
+ 49
267
+ 15
268
+ 44
269
+ 43
270
+ 3
271
+ 7
272
+ 9
273
+ 78
274
+ 49
275
+ 5
276
+ 2
277
+ 6
278
+ 8
279
+ 7
280
+ 10
281
+ 64
282
+ 49
283
+ 7
284
+ 2
285
+ 47
286
+ 101
287
+ 1
288
+ 63
289
+ 2
290
+ 49
291
+ 11
292
+ 0
293
+ 11
294
+ I
295
+ 6
296
+ I
297
+ 1
298
+ I
299
+ 1
300
+ I
301
+ 1
302
+ n
303
+ p
304
+ 12
305
+ s
306
+ 11
307
+ @_memoized_
308
+ x
309
+ 4
310
+ to_s
311
+ n
312
+ x
313
+ 6
314
+ Regexp
315
+ s
316
+ 4
317
+ \?\Z
318
+ x
319
+ 3
320
+ new
321
+ s
322
+ 6
323
+ _query
324
+ x
325
+ 3
326
+ sub
327
+ n
328
+ s
329
+ 3
330
+ !\Z
331
+ s
332
+ 5
333
+ _bang
334
+ x
335
+ 6
336
+ to_sym
337
+ p
338
+ 5
339
+ I
340
+ -1
341
+ I
342
+ 6
343
+ I
344
+ 0
345
+ I
346
+ 7
347
+ I
348
+ 40
349
+ x
350
+ 83
351
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
352
+ p
353
+ 1
354
+ x
355
+ 6
356
+ symbol
357
+ x
358
+ 13
359
+ attach_method
360
+ x
361
+ 15
362
+ InstanceMethods
363
+ x
364
+ 11
365
+ open_module
366
+ x
367
+ 15
368
+ __module_init__
369
+ M
370
+ 1
371
+ n
372
+ n
373
+ x
374
+ 15
375
+ InstanceMethods
376
+ i
377
+ 83
378
+ 5
379
+ 66
380
+ 99
381
+ 7
382
+ 0
383
+ 7
384
+ 1
385
+ 65
386
+ 5
387
+ 49
388
+ 2
389
+ 4
390
+ 15
391
+ 99
392
+ 7
393
+ 3
394
+ 7
395
+ 4
396
+ 65
397
+ 67
398
+ 49
399
+ 5
400
+ 0
401
+ 49
402
+ 6
403
+ 4
404
+ 15
405
+ 99
406
+ 7
407
+ 7
408
+ 7
409
+ 8
410
+ 65
411
+ 67
412
+ 49
413
+ 5
414
+ 0
415
+ 49
416
+ 6
417
+ 4
418
+ 15
419
+ 99
420
+ 7
421
+ 9
422
+ 7
423
+ 10
424
+ 65
425
+ 67
426
+ 49
427
+ 5
428
+ 0
429
+ 49
430
+ 6
431
+ 4
432
+ 15
433
+ 99
434
+ 7
435
+ 11
436
+ 7
437
+ 12
438
+ 65
439
+ 67
440
+ 49
441
+ 5
442
+ 0
443
+ 49
444
+ 6
445
+ 4
446
+ 15
447
+ 99
448
+ 7
449
+ 13
450
+ 7
451
+ 14
452
+ 65
453
+ 67
454
+ 49
455
+ 5
456
+ 0
457
+ 49
458
+ 6
459
+ 4
460
+ 11
461
+ I
462
+ 5
463
+ I
464
+ 0
465
+ I
466
+ 0
467
+ I
468
+ 0
469
+ n
470
+ p
471
+ 15
472
+ x
473
+ 8
474
+ included
475
+ M
476
+ 1
477
+ n
478
+ n
479
+ x
480
+ 8
481
+ included
482
+ i
483
+ 8
484
+ 20
485
+ 0
486
+ 56
487
+ 0
488
+ 50
489
+ 1
490
+ 0
491
+ 11
492
+ I
493
+ 3
494
+ I
495
+ 1
496
+ I
497
+ 1
498
+ I
499
+ 1
500
+ n
501
+ p
502
+ 2
503
+ M
504
+ 1
505
+ p
506
+ 2
507
+ x
508
+ 9
509
+ for_block
510
+ t
511
+ n
512
+ x
513
+ 8
514
+ included
515
+ i
516
+ 23
517
+ 21
518
+ 1
519
+ 0
520
+ 7
521
+ 0
522
+ 49
523
+ 1
524
+ 1
525
+ 9
526
+ 13
527
+ 1
528
+ 8
529
+ 22
530
+ 5
531
+ 7
532
+ 2
533
+ 7
534
+ 3
535
+ 47
536
+ 49
537
+ 4
538
+ 2
539
+ 11
540
+ I
541
+ 4
542
+ I
543
+ 0
544
+ I
545
+ 0
546
+ I
547
+ 0
548
+ I
549
+ -2
550
+ p
551
+ 5
552
+ x
553
+ 25
554
+ freeze_without_memoizable
555
+ x
556
+ 15
557
+ method_defined?
558
+ x
559
+ 6
560
+ freeze
561
+ x
562
+ 10
563
+ memoizable
564
+ x
565
+ 18
566
+ alias_method_chain
567
+ p
568
+ 5
569
+ I
570
+ 0
571
+ I
572
+ d
573
+ I
574
+ d
575
+ I
576
+ e
577
+ I
578
+ 17
579
+ x
580
+ 83
581
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
582
+ p
583
+ 0
584
+ x
585
+ 10
586
+ class_eval
587
+ p
588
+ 5
589
+ I
590
+ -1
591
+ I
592
+ b
593
+ I
594
+ 0
595
+ I
596
+ c
597
+ I
598
+ 8
599
+ x
600
+ 83
601
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
602
+ p
603
+ 1
604
+ x
605
+ 4
606
+ base
607
+ x
608
+ 13
609
+ attach_method
610
+ x
611
+ 22
612
+ freeze_with_memoizable
613
+ M
614
+ 1
615
+ n
616
+ n
617
+ x
618
+ 22
619
+ freeze_with_memoizable
620
+ i
621
+ 18
622
+ 5
623
+ 47
624
+ 49
625
+ 0
626
+ 0
627
+ 9
628
+ 10
629
+ 1
630
+ 8
631
+ 13
632
+ 5
633
+ 48
634
+ 1
635
+ 15
636
+ 5
637
+ 48
638
+ 2
639
+ 11
640
+ I
641
+ 1
642
+ I
643
+ 0
644
+ I
645
+ 0
646
+ I
647
+ 0
648
+ n
649
+ p
650
+ 3
651
+ x
652
+ 7
653
+ frozen?
654
+ x
655
+ 11
656
+ memoize_all
657
+ x
658
+ 25
659
+ freeze_without_memoizable
660
+ p
661
+ 7
662
+ I
663
+ -1
664
+ I
665
+ 13
666
+ I
667
+ 0
668
+ I
669
+ 14
670
+ I
671
+ e
672
+ I
673
+ 15
674
+ I
675
+ 12
676
+ x
677
+ 83
678
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
679
+ p
680
+ 0
681
+ x
682
+ 17
683
+ method_visibility
684
+ x
685
+ 15
686
+ add_defn_method
687
+ x
688
+ 11
689
+ memoize_all
690
+ M
691
+ 1
692
+ n
693
+ n
694
+ x
695
+ 11
696
+ memoize_all
697
+ i
698
+ 9
699
+ 5
700
+ 7
701
+ 0
702
+ 64
703
+ 47
704
+ 49
705
+ 1
706
+ 1
707
+ 11
708
+ I
709
+ 2
710
+ I
711
+ 0
712
+ I
713
+ 0
714
+ I
715
+ 0
716
+ n
717
+ p
718
+ 2
719
+ s
720
+ 2
721
+ .*
722
+ x
723
+ 11
724
+ prime_cache
725
+ p
726
+ 5
727
+ I
728
+ -1
729
+ I
730
+ 18
731
+ I
732
+ 0
733
+ I
734
+ 19
735
+ I
736
+ 9
737
+ x
738
+ 83
739
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
740
+ p
741
+ 0
742
+ x
743
+ 13
744
+ unmemoize_all
745
+ M
746
+ 1
747
+ n
748
+ n
749
+ x
750
+ 13
751
+ unmemoize_all
752
+ i
753
+ 9
754
+ 5
755
+ 7
756
+ 0
757
+ 64
758
+ 47
759
+ 49
760
+ 1
761
+ 1
762
+ 11
763
+ I
764
+ 2
765
+ I
766
+ 0
767
+ I
768
+ 0
769
+ I
770
+ 0
771
+ n
772
+ p
773
+ 2
774
+ s
775
+ 2
776
+ .*
777
+ x
778
+ 11
779
+ flush_cache
780
+ p
781
+ 5
782
+ I
783
+ -1
784
+ I
785
+ 1c
786
+ I
787
+ 0
788
+ I
789
+ 1d
790
+ I
791
+ 9
792
+ x
793
+ 83
794
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
795
+ p
796
+ 0
797
+ x
798
+ 11
799
+ prime_cache
800
+ M
801
+ 1
802
+ n
803
+ n
804
+ x
805
+ 11
806
+ prime_cache
807
+ i
808
+ 8
809
+ 20
810
+ 0
811
+ 56
812
+ 0
813
+ 50
814
+ 1
815
+ 0
816
+ 11
817
+ I
818
+ 3
819
+ I
820
+ 1
821
+ I
822
+ 0
823
+ I
824
+ 0
825
+ I
826
+ 0
827
+ p
828
+ 2
829
+ M
830
+ 1
831
+ p
832
+ 2
833
+ x
834
+ 9
835
+ for_block
836
+ t
837
+ n
838
+ x
839
+ 11
840
+ prime_cache
841
+ i
842
+ 13
843
+ 57
844
+ 19
845
+ 0
846
+ 15
847
+ 5
848
+ 48
849
+ 0
850
+ 56
851
+ 1
852
+ 50
853
+ 2
854
+ 0
855
+ 11
856
+ I
857
+ 4
858
+ I
859
+ 1
860
+ I
861
+ 1
862
+ I
863
+ 1
864
+ n
865
+ p
866
+ 3
867
+ x
868
+ 7
869
+ methods
870
+ M
871
+ 1
872
+ p
873
+ 2
874
+ x
875
+ 9
876
+ for_block
877
+ t
878
+ n
879
+ x
880
+ 11
881
+ prime_cache
882
+ i
883
+ 96
884
+ 57
885
+ 19
886
+ 0
887
+ 15
888
+ 20
889
+ 0
890
+ 49
891
+ 0
892
+ 0
893
+ 44
894
+ 43
895
+ 1
896
+ 7
897
+ 2
898
+ 21
899
+ 1
900
+ 0
901
+ 47
902
+ 101
903
+ 0
904
+ 7
905
+ 3
906
+ 63
907
+ 3
908
+ 78
909
+ 49
910
+ 4
911
+ 2
912
+ 49
913
+ 5
914
+ 1
915
+ 9
916
+ 94
917
+ 5
918
+ 20
919
+ 0
920
+ 47
921
+ 49
922
+ 6
923
+ 1
924
+ 49
925
+ 7
926
+ 0
927
+ 78
928
+ 83
929
+ 8
930
+ 9
931
+ 61
932
+ 5
933
+ 4
934
+ 5
935
+ 78
936
+ 98
937
+ 9
938
+ 2
939
+ 47
940
+ 49
941
+ 10
942
+ 1
943
+ 8
944
+ 92
945
+ 45
946
+ 11
947
+ 12
948
+ 43
949
+ 13
950
+ 4
951
+ 5
952
+ 78
953
+ 98
954
+ 9
955
+ 2
956
+ 49
957
+ 14
958
+ 1
959
+ 19
960
+ 1
961
+ 15
962
+ 5
963
+ 20
964
+ 1
965
+ 44
966
+ 43
967
+ 15
968
+ 78
969
+ 49
970
+ 16
971
+ 1
972
+ 47
973
+ 49
974
+ 17
975
+ 2
976
+ 8
977
+ 95
978
+ 1
979
+ 11
980
+ I
981
+ 8
982
+ I
983
+ 2
984
+ I
985
+ 1
986
+ I
987
+ 1
988
+ n
989
+ p
990
+ 18
991
+ x
992
+ 4
993
+ to_s
994
+ x
995
+ 6
996
+ Regexp
997
+ s
998
+ 14
999
+ ^_unmemoized_(
1000
+ s
1001
+ 1
1002
+ )
1003
+ x
1004
+ 3
1005
+ new
1006
+ x
1007
+ 2
1008
+ =~
1009
+ x
1010
+ 6
1011
+ method
1012
+ x
1013
+ 5
1014
+ arity
1015
+ x
1016
+ 2
1017
+ ==
1018
+ x
1019
+ 24
1020
+ regexp_last_match_result
1021
+ x
1022
+ 8
1023
+ __send__
1024
+ x
1025
+ 13
1026
+ ActiveSupport
1027
+ n
1028
+ x
1029
+ 10
1030
+ Memoizable
1031
+ x
1032
+ 17
1033
+ memoized_ivar_for
1034
+ x
1035
+ 4
1036
+ Hash
1037
+ x
1038
+ 16
1039
+ new_from_literal
1040
+ x
1041
+ 21
1042
+ instance_variable_set
1043
+ p
1044
+ 15
1045
+ I
1046
+ 0
1047
+ I
1048
+ 22
1049
+ I
1050
+ 4
1051
+ I
1052
+ 23
1053
+ I
1054
+ 21
1055
+ I
1056
+ 24
1057
+ I
1058
+ 30
1059
+ I
1060
+ 25
1061
+ I
1062
+ 3d
1063
+ I
1064
+ 27
1065
+ I
1066
+ 4e
1067
+ I
1068
+ 28
1069
+ I
1070
+ 5e
1071
+ I
1072
+ 23
1073
+ I
1074
+ 60
1075
+ x
1076
+ 83
1077
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
1078
+ p
1079
+ 2
1080
+ x
1081
+ 1
1082
+ m
1083
+ x
1084
+ 4
1085
+ ivar
1086
+ x
1087
+ 4
1088
+ each
1089
+ p
1090
+ 5
1091
+ I
1092
+ 0
1093
+ I
1094
+ 21
1095
+ I
1096
+ 4
1097
+ I
1098
+ 22
1099
+ I
1100
+ d
1101
+ x
1102
+ 83
1103
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
1104
+ p
1105
+ 1
1106
+ x
1107
+ 3
1108
+ sym
1109
+ x
1110
+ 4
1111
+ each
1112
+ p
1113
+ 5
1114
+ I
1115
+ -1
1116
+ I
1117
+ 20
1118
+ I
1119
+ 0
1120
+ I
1121
+ 21
1122
+ I
1123
+ 8
1124
+ x
1125
+ 83
1126
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
1127
+ p
1128
+ 1
1129
+ x
1130
+ 4
1131
+ syms
1132
+ x
1133
+ 11
1134
+ flush_cache
1135
+ M
1136
+ 1
1137
+ n
1138
+ n
1139
+ x
1140
+ 11
1141
+ flush_cache
1142
+ i
1143
+ 8
1144
+ 20
1145
+ 0
1146
+ 56
1147
+ 0
1148
+ 50
1149
+ 1
1150
+ 0
1151
+ 11
1152
+ I
1153
+ 3
1154
+ I
1155
+ 1
1156
+ I
1157
+ 0
1158
+ I
1159
+ 0
1160
+ I
1161
+ 0
1162
+ p
1163
+ 2
1164
+ M
1165
+ 1
1166
+ p
1167
+ 2
1168
+ x
1169
+ 9
1170
+ for_block
1171
+ t
1172
+ n
1173
+ x
1174
+ 11
1175
+ flush_cache
1176
+ i
1177
+ 23
1178
+ 57
1179
+ 19
1180
+ 0
1181
+ 15
1182
+ 5
1183
+ 48
1184
+ 0
1185
+ 5
1186
+ 48
1187
+ 1
1188
+ 81
1189
+ 2
1190
+ 5
1191
+ 48
1192
+ 3
1193
+ 81
1194
+ 2
1195
+ 56
1196
+ 4
1197
+ 50
1198
+ 5
1199
+ 0
1200
+ 11
1201
+ I
1202
+ 4
1203
+ I
1204
+ 1
1205
+ I
1206
+ 1
1207
+ I
1208
+ 1
1209
+ n
1210
+ p
1211
+ 6
1212
+ x
1213
+ 7
1214
+ methods
1215
+ x
1216
+ 15
1217
+ private_methods
1218
+ x
1219
+ 1
1220
+ +
1221
+ x
1222
+ 17
1223
+ protected_methods
1224
+ M
1225
+ 1
1226
+ p
1227
+ 2
1228
+ x
1229
+ 9
1230
+ for_block
1231
+ t
1232
+ n
1233
+ x
1234
+ 11
1235
+ flush_cache
1236
+ i
1237
+ 103
1238
+ 57
1239
+ 19
1240
+ 0
1241
+ 15
1242
+ 20
1243
+ 0
1244
+ 49
1245
+ 0
1246
+ 0
1247
+ 44
1248
+ 43
1249
+ 1
1250
+ 7
1251
+ 2
1252
+ 21
1253
+ 1
1254
+ 0
1255
+ 49
1256
+ 0
1257
+ 0
1258
+ 7
1259
+ 3
1260
+ 13
1261
+ 70
1262
+ 9
1263
+ 38
1264
+ 15
1265
+ 44
1266
+ 43
1267
+ 1
1268
+ 7
1269
+ 4
1270
+ 78
1271
+ 49
1272
+ 5
1273
+ 2
1274
+ 6
1275
+ 3
1276
+ 7
1277
+ 6
1278
+ 64
1279
+ 49
1280
+ 7
1281
+ 2
1282
+ 47
1283
+ 101
1284
+ 0
1285
+ 7
1286
+ 8
1287
+ 63
1288
+ 3
1289
+ 78
1290
+ 49
1291
+ 5
1292
+ 2
1293
+ 49
1294
+ 9
1295
+ 1
1296
+ 9
1297
+ 101
1298
+ 45
1299
+ 10
1300
+ 11
1301
+ 43
1302
+ 12
1303
+ 4
1304
+ 5
1305
+ 78
1306
+ 98
1307
+ 13
1308
+ 2
1309
+ 49
1310
+ 14
1311
+ 1
1312
+ 19
1313
+ 1
1314
+ 15
1315
+ 5
1316
+ 20
1317
+ 1
1318
+ 47
1319
+ 49
1320
+ 15
1321
+ 1
1322
+ 9
1323
+ 98
1324
+ 5
1325
+ 20
1326
+ 1
1327
+ 47
1328
+ 49
1329
+ 16
1330
+ 1
1331
+ 49
1332
+ 17
1333
+ 0
1334
+ 8
1335
+ 99
1336
+ 1
1337
+ 8
1338
+ 102
1339
+ 1
1340
+ 11
1341
+ I
1342
+ a
1343
+ I
1344
+ 2
1345
+ I
1346
+ 1
1347
+ I
1348
+ 1
1349
+ n
1350
+ p
1351
+ 18
1352
+ x
1353
+ 4
1354
+ to_s
1355
+ x
1356
+ 6
1357
+ Regexp
1358
+ s
1359
+ 14
1360
+ ^_unmemoized_(
1361
+ n
1362
+ s
1363
+ 4
1364
+ \?\Z
1365
+ x
1366
+ 3
1367
+ new
1368
+ s
1369
+ 2
1370
+ \?
1371
+ x
1372
+ 4
1373
+ gsub
1374
+ s
1375
+ 1
1376
+ )
1377
+ x
1378
+ 2
1379
+ =~
1380
+ x
1381
+ 13
1382
+ ActiveSupport
1383
+ n
1384
+ x
1385
+ 10
1386
+ Memoizable
1387
+ x
1388
+ 24
1389
+ regexp_last_match_result
1390
+ x
1391
+ 17
1392
+ memoized_ivar_for
1393
+ x
1394
+ 26
1395
+ instance_variable_defined?
1396
+ x
1397
+ 21
1398
+ instance_variable_get
1399
+ x
1400
+ 5
1401
+ clear
1402
+ p
1403
+ 11
1404
+ I
1405
+ 0
1406
+ I
1407
+ 31
1408
+ I
1409
+ 4
1410
+ I
1411
+ 32
1412
+ I
1413
+ 3c
1414
+ I
1415
+ 33
1416
+ I
1417
+ 4d
1418
+ I
1419
+ 34
1420
+ I
1421
+ 65
1422
+ I
1423
+ 32
1424
+ I
1425
+ 67
1426
+ x
1427
+ 83
1428
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
1429
+ p
1430
+ 2
1431
+ x
1432
+ 1
1433
+ m
1434
+ x
1435
+ 4
1436
+ ivar
1437
+ x
1438
+ 4
1439
+ each
1440
+ p
1441
+ 5
1442
+ I
1443
+ 0
1444
+ I
1445
+ 30
1446
+ I
1447
+ 4
1448
+ I
1449
+ 31
1450
+ I
1451
+ 17
1452
+ x
1453
+ 83
1454
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
1455
+ p
1456
+ 1
1457
+ x
1458
+ 3
1459
+ sym
1460
+ x
1461
+ 4
1462
+ each
1463
+ p
1464
+ 5
1465
+ I
1466
+ -1
1467
+ I
1468
+ 2f
1469
+ I
1470
+ 0
1471
+ I
1472
+ 30
1473
+ I
1474
+ 8
1475
+ x
1476
+ 83
1477
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
1478
+ p
1479
+ 1
1480
+ x
1481
+ 4
1482
+ syms
1483
+ p
1484
+ 13
1485
+ I
1486
+ 2
1487
+ I
1488
+ b
1489
+ I
1490
+ d
1491
+ I
1492
+ 13
1493
+ I
1494
+ 1b
1495
+ I
1496
+ 18
1497
+ I
1498
+ 29
1499
+ I
1500
+ 1c
1501
+ I
1502
+ 37
1503
+ I
1504
+ 20
1505
+ I
1506
+ 45
1507
+ I
1508
+ 2f
1509
+ I
1510
+ 53
1511
+ x
1512
+ 83
1513
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
1514
+ p
1515
+ 0
1516
+ x
1517
+ 7
1518
+ memoize
1519
+ M
1520
+ 1
1521
+ n
1522
+ n
1523
+ x
1524
+ 7
1525
+ memoize
1526
+ i
1527
+ 8
1528
+ 20
1529
+ 0
1530
+ 56
1531
+ 0
1532
+ 50
1533
+ 1
1534
+ 0
1535
+ 11
1536
+ I
1537
+ 3
1538
+ I
1539
+ 1
1540
+ I
1541
+ 0
1542
+ I
1543
+ 0
1544
+ I
1545
+ 0
1546
+ p
1547
+ 2
1548
+ M
1549
+ 1
1550
+ p
1551
+ 2
1552
+ x
1553
+ 9
1554
+ for_block
1555
+ t
1556
+ n
1557
+ x
1558
+ 7
1559
+ memoize
1560
+ i
1561
+ 239
1562
+ 57
1563
+ 19
1564
+ 0
1565
+ 15
1566
+ 7
1567
+ 0
1568
+ 20
1569
+ 0
1570
+ 47
1571
+ 101
1572
+ 1
1573
+ 63
1574
+ 2
1575
+ 47
1576
+ 49
1577
+ 2
1578
+ 0
1579
+ 19
1580
+ 1
1581
+ 15
1582
+ 45
1583
+ 3
1584
+ 4
1585
+ 43
1586
+ 5
1587
+ 20
1588
+ 0
1589
+ 49
1590
+ 6
1591
+ 1
1592
+ 19
1593
+ 2
1594
+ 15
1595
+ 5
1596
+ 7
1597
+ 7
1598
+ 20
1599
+ 1
1600
+ 47
1601
+ 101
1602
+ 1
1603
+ 7
1604
+ 8
1605
+ 20
1606
+ 0
1607
+ 47
1608
+ 101
1609
+ 1
1610
+ 7
1611
+ 9
1612
+ 20
1613
+ 1
1614
+ 47
1615
+ 101
1616
+ 1
1617
+ 7
1618
+ 10
1619
+ 20
1620
+ 0
1621
+ 47
1622
+ 101
1623
+ 1
1624
+ 7
1625
+ 11
1626
+ 20
1627
+ 0
1628
+ 47
1629
+ 101
1630
+ 1
1631
+ 7
1632
+ 12
1633
+ 20
1634
+ 0
1635
+ 47
1636
+ 101
1637
+ 1
1638
+ 7
1639
+ 13
1640
+ 20
1641
+ 2
1642
+ 47
1643
+ 101
1644
+ 1
1645
+ 7
1646
+ 14
1647
+ 20
1648
+ 2
1649
+ 47
1650
+ 101
1651
+ 1
1652
+ 7
1653
+ 15
1654
+ 20
1655
+ 2
1656
+ 47
1657
+ 101
1658
+ 1
1659
+ 7
1660
+ 16
1661
+ 20
1662
+ 1
1663
+ 47
1664
+ 101
1665
+ 1
1666
+ 7
1667
+ 17
1668
+ 20
1669
+ 2
1670
+ 47
1671
+ 101
1672
+ 1
1673
+ 7
1674
+ 18
1675
+ 20
1676
+ 0
1677
+ 47
1678
+ 101
1679
+ 1
1680
+ 7
1681
+ 19
1682
+ 20
1683
+ 2
1684
+ 47
1685
+ 101
1686
+ 1
1687
+ 7
1688
+ 20
1689
+ 20
1690
+ 2
1691
+ 47
1692
+ 101
1693
+ 1
1694
+ 7
1695
+ 21
1696
+ 20
1697
+ 2
1698
+ 47
1699
+ 101
1700
+ 1
1701
+ 7
1702
+ 22
1703
+ 20
1704
+ 2
1705
+ 47
1706
+ 101
1707
+ 1
1708
+ 7
1709
+ 23
1710
+ 20
1711
+ 2
1712
+ 47
1713
+ 101
1714
+ 1
1715
+ 7
1716
+ 24
1717
+ 20
1718
+ 2
1719
+ 47
1720
+ 101
1721
+ 1
1722
+ 7
1723
+ 25
1724
+ 20
1725
+ 2
1726
+ 47
1727
+ 101
1728
+ 1
1729
+ 7
1730
+ 26
1731
+ 20
1732
+ 1
1733
+ 47
1734
+ 101
1735
+ 1
1736
+ 7
1737
+ 27
1738
+ 20
1739
+ 1
1740
+ 47
1741
+ 101
1742
+ 1
1743
+ 7
1744
+ 28
1745
+ 20
1746
+ 1
1747
+ 49
1748
+ 29
1749
+ 0
1750
+ 47
1751
+ 101
1752
+ 1
1753
+ 7
1754
+ 30
1755
+ 20
1756
+ 0
1757
+ 49
1758
+ 29
1759
+ 0
1760
+ 47
1761
+ 101
1762
+ 1
1763
+ 7
1764
+ 31
1765
+ 20
1766
+ 1
1767
+ 49
1768
+ 29
1769
+ 0
1770
+ 47
1771
+ 101
1772
+ 1
1773
+ 7
1774
+ 32
1775
+ 20
1776
+ 0
1777
+ 49
1778
+ 29
1779
+ 0
1780
+ 47
1781
+ 101
1782
+ 1
1783
+ 7
1784
+ 33
1785
+ 63
1786
+ 51
1787
+ 65
1788
+ 49
1789
+ 34
1790
+ 0
1791
+ 4
1792
+ 64
1793
+ 79
1794
+ 81
1795
+ 35
1796
+ 47
1797
+ 49
1798
+ 36
1799
+ 3
1800
+ 11
1801
+ I
1802
+ 38
1803
+ I
1804
+ 3
1805
+ I
1806
+ 1
1807
+ I
1808
+ 1
1809
+ n
1810
+ p
1811
+ 37
1812
+ s
1813
+ 12
1814
+ _unmemoized_
1815
+ x
1816
+ 4
1817
+ to_s
1818
+ x
1819
+ 6
1820
+ to_sym
1821
+ x
1822
+ 13
1823
+ ActiveSupport
1824
+ n
1825
+ x
1826
+ 10
1827
+ Memoizable
1828
+ x
1829
+ 17
1830
+ memoized_ivar_for
1831
+ s
1832
+ 224
1833
+ include InstanceMethods # include InstanceMethods
1834
+ #
1835
+ if method_defined?(:
1836
+ s
1837
+ 116
1838
+ ) # if method_defined?(:_unmemoized_mime_type)
1839
+ raise "Already memoized
1840
+ s
1841
+ 182
1842
+ " # raise "Already memoized mime_type"
1843
+ end # end
1844
+ alias
1845
+ s
1846
+ 1
1847
+
1848
+ s
1849
+ 194
1850
+ # alias _unmemoized_mime_type mime_type
1851
+ #
1852
+ if instance_method(:
1853
+ s
1854
+ 104
1855
+ ).arity == 0 # if instance_method(:mime_type).arity == 0
1856
+ def
1857
+ s
1858
+ 129
1859
+ (reload = false) # def mime_type(reload = false)
1860
+ if reload || !defined?(
1861
+ s
1862
+ 5
1863
+ ) ||
1864
+ s
1865
+ 107
1866
+ .empty? # if reload || !defined?(@_memoized_mime_type) || @_memoized_mime_type.empty?
1867
+
1868
+ s
1869
+ 4
1870
+ = [
1871
+ s
1872
+ 191
1873
+ ] # @_memoized_mime_type = [_unmemoized_mime_type]
1874
+ end # end
1875
+
1876
+ s
1877
+ 280
1878
+ [0] # @_memoized_mime_type[0]
1879
+ end # end
1880
+ else # else
1881
+ def
1882
+ s
1883
+ 97
1884
+ (*args) # def mime_type(*args)
1885
+
1886
+ s
1887
+ 365
1888
+ ||= {} unless frozen? # @_memoized_mime_type ||= {} unless frozen?
1889
+ reload = args.pop if args.last == true || args.last == :reload # reload = args.pop if args.last == true || args.last == :reload
1890
+ #
1891
+ if defined?(
1892
+ s
1893
+ 5
1894
+ ) &&
1895
+ s
1896
+ 114
1897
+ # if defined?(@_memoized_mime_type) && @_memoized_mime_type
1898
+ if !reload &&
1899
+ s
1900
+ 113
1901
+ .has_key?(args) # if !reload && @_memoized_mime_type.has_key?(args)
1902
+
1903
+ s
1904
+ 108
1905
+ [args] # @_memoized_mime_type[args]
1906
+ elsif
1907
+ s
1908
+ 98
1909
+ # elsif @_memoized_mime_type
1910
+
1911
+ s
1912
+ 9
1913
+ [args] =
1914
+ s
1915
+ 295
1916
+ (*args) # @_memoized_mime_type[args] = _unmemoized_mime_type(*args)
1917
+ end # end
1918
+ else # else
1919
+
1920
+ s
1921
+ 481
1922
+ (*args) # _unmemoized_mime_type(*args)
1923
+ end # end
1924
+ end # end
1925
+ end # end
1926
+ #
1927
+ if private_method_defined?(
1928
+ x
1929
+ 7
1930
+ inspect
1931
+ s
1932
+ 93
1933
+ ) # if private_method_defined?(:_unmemoized_mime_type)
1934
+ private
1935
+ s
1936
+ 111
1937
+ # private :mime_type
1938
+ elsif protected_method_defined?(
1939
+ s
1940
+ 95
1941
+ ) # elsif protected_method_defined?(:_unmemoized_mime_type)
1942
+ protected
1943
+ s
1944
+ 158
1945
+ # protected :mime_type
1946
+ end # end
1947
+
1948
+ x
1949
+ 11
1950
+ active_path
1951
+ x
1952
+ 1
1953
+ +
1954
+ x
1955
+ 10
1956
+ class_eval
1957
+ p
1958
+ 51
1959
+ I
1960
+ 0
1961
+ I
1962
+ 3c
1963
+ I
1964
+ 4
1965
+ I
1966
+ 3d
1967
+ I
1968
+ 14
1969
+ I
1970
+ 3e
1971
+ I
1972
+ 21
1973
+ I
1974
+ 40
1975
+ I
1976
+ 22
1977
+ I
1978
+ 43
1979
+ I
1980
+ 2b
1981
+ I
1982
+ 44
1983
+ I
1984
+ 32
1985
+ I
1986
+ 46
1987
+ I
1988
+ 40
1989
+ I
1990
+ 48
1991
+ I
1992
+ 47
1993
+ I
1994
+ 49
1995
+ I
1996
+ 4e
1997
+ I
1998
+ 4a
1999
+ I
2000
+ 5c
2001
+ I
2002
+ 4b
2003
+ I
2004
+ 6a
2005
+ I
2006
+ 4d
2007
+ I
2008
+ 71
2009
+ I
2010
+ 50
2011
+ I
2012
+ 78
2013
+ I
2014
+ 51
2015
+ I
2016
+ 7f
2017
+ I
2018
+ 54
2019
+ I
2020
+ 8d
2021
+ I
2022
+ 55
2023
+ I
2024
+ 94
2025
+ I
2026
+ 56
2027
+ I
2028
+ 9b
2029
+ I
2030
+ 57
2031
+ I
2032
+ a2
2033
+ I
2034
+ 58
2035
+ I
2036
+ b0
2037
+ I
2038
+ 5b
2039
+ I
2040
+ b7
2041
+ I
2042
+ 60
2043
+ I
2044
+ c1
2045
+ I
2046
+ 61
2047
+ I
2048
+ cb
2049
+ I
2050
+ 62
2051
+ I
2052
+ d5
2053
+ I
2054
+ 63
2055
+ I
2056
+ e1
2057
+ I
2058
+ 40
2059
+ I
2060
+ ef
2061
+ x
2062
+ 83
2063
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
2064
+ p
2065
+ 3
2066
+ x
2067
+ 6
2068
+ symbol
2069
+ x
2070
+ 15
2071
+ original_method
2072
+ x
2073
+ 13
2074
+ memoized_ivar
2075
+ x
2076
+ 4
2077
+ each
2078
+ p
2079
+ 5
2080
+ I
2081
+ -1
2082
+ I
2083
+ 3b
2084
+ I
2085
+ 0
2086
+ I
2087
+ 3c
2088
+ I
2089
+ 8
2090
+ x
2091
+ 83
2092
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
2093
+ p
2094
+ 1
2095
+ x
2096
+ 7
2097
+ symbols
2098
+ x
2099
+ 17
2100
+ method_visibility
2101
+ x
2102
+ 15
2103
+ add_defn_method
2104
+ p
2105
+ 7
2106
+ I
2107
+ 2
2108
+ I
2109
+ 6
2110
+ I
2111
+ d
2112
+ I
2113
+ a
2114
+ I
2115
+ 27
2116
+ I
2117
+ 3b
2118
+ I
2119
+ 35
2120
+ x
2121
+ 83
2122
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
2123
+ p
2124
+ 0
2125
+ x
2126
+ 13
2127
+ attach_method
2128
+ p
2129
+ 3
2130
+ I
2131
+ 2
2132
+ I
2133
+ 5
2134
+ I
2135
+ 1c
2136
+ x
2137
+ 83
2138
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
2139
+ p
2140
+ 0
2141
+ x
2142
+ 13
2143
+ attach_method
2144
+ p
2145
+ 7
2146
+ I
2147
+ 0
2148
+ I
2149
+ 1
2150
+ I
2151
+ 9
2152
+ I
2153
+ 2
2154
+ I
2155
+ 12
2156
+ I
2157
+ 4
2158
+ I
2159
+ 2e
2160
+ x
2161
+ 83
2162
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/memoizable.rb
2163
+ p
2164
+ 0