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,1266 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 65
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
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 5
41
+ 7
42
+ 4
43
+ 64
44
+ 47
45
+ 49
46
+ 1
47
+ 1
48
+ 15
49
+ 99
50
+ 7
51
+ 5
52
+ 1
53
+ 65
54
+ 49
55
+ 6
56
+ 3
57
+ 13
58
+ 99
59
+ 12
60
+ 7
61
+ 7
62
+ 12
63
+ 7
64
+ 8
65
+ 12
66
+ 65
67
+ 12
68
+ 49
69
+ 9
70
+ 4
71
+ 15
72
+ 49
73
+ 7
74
+ 0
75
+ 15
76
+ 2
77
+ 11
78
+ I
79
+ 6
80
+ I
81
+ 0
82
+ I
83
+ 0
84
+ I
85
+ 0
86
+ n
87
+ p
88
+ 10
89
+ s
90
+ 36
91
+ active_support/core_ext/object/blank
92
+ x
93
+ 7
94
+ require
95
+ s
96
+ 45
97
+ active_support/core_ext/array/extract_options
98
+ s
99
+ 46
100
+ active_support/core_ext/kernel/singleton_class
101
+ s
102
+ 44
103
+ active_support/core_ext/module/remove_method
104
+ x
105
+ 5
106
+ Class
107
+ x
108
+ 10
109
+ open_class
110
+ x
111
+ 14
112
+ __class_init__
113
+ M
114
+ 1
115
+ n
116
+ n
117
+ x
118
+ 5
119
+ Class
120
+ i
121
+ 48
122
+ 5
123
+ 66
124
+ 99
125
+ 7
126
+ 0
127
+ 7
128
+ 1
129
+ 65
130
+ 67
131
+ 49
132
+ 2
133
+ 0
134
+ 49
135
+ 3
136
+ 4
137
+ 15
138
+ 5
139
+ 48
140
+ 4
141
+ 15
142
+ 99
143
+ 7
144
+ 5
145
+ 7
146
+ 6
147
+ 65
148
+ 67
149
+ 49
150
+ 2
151
+ 0
152
+ 49
153
+ 3
154
+ 4
155
+ 15
156
+ 99
157
+ 7
158
+ 7
159
+ 7
160
+ 8
161
+ 65
162
+ 67
163
+ 49
164
+ 2
165
+ 0
166
+ 49
167
+ 3
168
+ 4
169
+ 11
170
+ I
171
+ 5
172
+ I
173
+ 0
174
+ I
175
+ 0
176
+ I
177
+ 0
178
+ n
179
+ p
180
+ 9
181
+ x
182
+ 30
183
+ superclass_delegating_accessor
184
+ M
185
+ 1
186
+ n
187
+ n
188
+ x
189
+ 30
190
+ superclass_delegating_accessor
191
+ i
192
+ 139
193
+ 23
194
+ 1
195
+ 10
196
+ 14
197
+ 44
198
+ 43
199
+ 0
200
+ 78
201
+ 49
202
+ 1
203
+ 1
204
+ 19
205
+ 1
206
+ 15
207
+ 5
208
+ 7
209
+ 2
210
+ 20
211
+ 0
212
+ 47
213
+ 101
214
+ 3
215
+ 63
216
+ 2
217
+ 47
218
+ 49
219
+ 4
220
+ 1
221
+ 15
222
+ 5
223
+ 48
224
+ 5
225
+ 7
226
+ 6
227
+ 20
228
+ 0
229
+ 56
230
+ 7
231
+ 50
232
+ 8
233
+ 2
234
+ 15
235
+ 5
236
+ 48
237
+ 5
238
+ 7
239
+ 6
240
+ 20
241
+ 0
242
+ 47
243
+ 101
244
+ 3
245
+ 7
246
+ 9
247
+ 63
248
+ 2
249
+ 56
250
+ 10
251
+ 50
252
+ 8
253
+ 2
254
+ 15
255
+ 5
256
+ 48
257
+ 5
258
+ 7
259
+ 6
260
+ 20
261
+ 0
262
+ 47
263
+ 101
264
+ 3
265
+ 7
266
+ 11
267
+ 63
268
+ 2
269
+ 56
270
+ 12
271
+ 50
272
+ 8
273
+ 2
274
+ 15
275
+ 20
276
+ 1
277
+ 7
278
+ 13
279
+ 49
280
+ 14
281
+ 1
282
+ 3
283
+ 83
284
+ 15
285
+ 9
286
+ 97
287
+ 1
288
+ 8
289
+ 106
290
+ 5
291
+ 20
292
+ 0
293
+ 56
294
+ 16
295
+ 47
296
+ 50
297
+ 6
298
+ 1
299
+ 15
300
+ 20
301
+ 1
302
+ 7
303
+ 13
304
+ 49
305
+ 14
306
+ 1
307
+ 3
308
+ 83
309
+ 15
310
+ 9
311
+ 122
312
+ 1
313
+ 8
314
+ 138
315
+ 5
316
+ 20
317
+ 0
318
+ 47
319
+ 101
320
+ 3
321
+ 7
322
+ 9
323
+ 63
324
+ 2
325
+ 56
326
+ 17
327
+ 47
328
+ 50
329
+ 6
330
+ 1
331
+ 11
332
+ I
333
+ 6
334
+ I
335
+ 2
336
+ I
337
+ 1
338
+ I
339
+ 2
340
+ n
341
+ p
342
+ 18
343
+ x
344
+ 4
345
+ Hash
346
+ x
347
+ 16
348
+ new_from_literal
349
+ s
350
+ 1
351
+ _
352
+ x
353
+ 4
354
+ to_s
355
+ x
356
+ 31
357
+ _superclass_delegating_accessor
358
+ x
359
+ 15
360
+ singleton_class
361
+ x
362
+ 13
363
+ define_method
364
+ M
365
+ 1
366
+ p
367
+ 2
368
+ x
369
+ 9
370
+ for_block
371
+ t
372
+ n
373
+ x
374
+ 30
375
+ superclass_delegating_accessor
376
+ i
377
+ 16
378
+ 5
379
+ 7
380
+ 0
381
+ 21
382
+ 1
383
+ 0
384
+ 47
385
+ 101
386
+ 1
387
+ 63
388
+ 2
389
+ 47
390
+ 49
391
+ 2
392
+ 1
393
+ 11
394
+ I
395
+ 4
396
+ I
397
+ 0
398
+ I
399
+ 0
400
+ I
401
+ 0
402
+ I
403
+ -2
404
+ p
405
+ 3
406
+ s
407
+ 1
408
+ _
409
+ x
410
+ 4
411
+ to_s
412
+ x
413
+ 4
414
+ send
415
+ p
416
+ 3
417
+ I
418
+ 0
419
+ I
420
+ f
421
+ I
422
+ 10
423
+ x
424
+ 109
425
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
426
+ p
427
+ 0
428
+ x
429
+ 4
430
+ send
431
+ s
432
+ 1
433
+ ?
434
+ M
435
+ 1
436
+ p
437
+ 2
438
+ x
439
+ 9
440
+ for_block
441
+ t
442
+ n
443
+ x
444
+ 30
445
+ superclass_delegating_accessor
446
+ i
447
+ 28
448
+ 5
449
+ 7
450
+ 0
451
+ 21
452
+ 1
453
+ 0
454
+ 47
455
+ 101
456
+ 1
457
+ 63
458
+ 2
459
+ 47
460
+ 49
461
+ 2
462
+ 1
463
+ 10
464
+ 20
465
+ 2
466
+ 8
467
+ 21
468
+ 3
469
+ 10
470
+ 26
471
+ 2
472
+ 8
473
+ 27
474
+ 3
475
+ 11
476
+ I
477
+ 4
478
+ I
479
+ 0
480
+ I
481
+ 0
482
+ I
483
+ 0
484
+ I
485
+ -2
486
+ p
487
+ 3
488
+ s
489
+ 1
490
+ _
491
+ x
492
+ 4
493
+ to_s
494
+ x
495
+ 4
496
+ send
497
+ p
498
+ 3
499
+ I
500
+ 0
501
+ I
502
+ 10
503
+ I
504
+ 1c
505
+ x
506
+ 109
507
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
508
+ p
509
+ 0
510
+ s
511
+ 1
512
+ =
513
+ M
514
+ 1
515
+ p
516
+ 2
517
+ x
518
+ 9
519
+ for_block
520
+ t
521
+ n
522
+ x
523
+ 30
524
+ superclass_delegating_accessor
525
+ i
526
+ 24
527
+ 57
528
+ 19
529
+ 0
530
+ 15
531
+ 5
532
+ 7
533
+ 0
534
+ 21
535
+ 1
536
+ 0
537
+ 47
538
+ 101
539
+ 1
540
+ 7
541
+ 2
542
+ 63
543
+ 3
544
+ 20
545
+ 0
546
+ 47
547
+ 49
548
+ 3
549
+ 2
550
+ 11
551
+ I
552
+ 6
553
+ I
554
+ 1
555
+ I
556
+ 1
557
+ I
558
+ 1
559
+ n
560
+ p
561
+ 4
562
+ s
563
+ 1
564
+ _
565
+ x
566
+ 4
567
+ to_s
568
+ s
569
+ 1
570
+ =
571
+ x
572
+ 4
573
+ send
574
+ p
575
+ 3
576
+ I
577
+ 0
578
+ I
579
+ 11
580
+ I
581
+ 18
582
+ x
583
+ 109
584
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
585
+ p
586
+ 1
587
+ x
588
+ 5
589
+ value
590
+ x
591
+ 15
592
+ instance_reader
593
+ x
594
+ 2
595
+ []
596
+ x
597
+ 2
598
+ ==
599
+ M
600
+ 1
601
+ p
602
+ 2
603
+ x
604
+ 9
605
+ for_block
606
+ t
607
+ n
608
+ x
609
+ 30
610
+ superclass_delegating_accessor
611
+ i
612
+ 16
613
+ 5
614
+ 7
615
+ 0
616
+ 21
617
+ 1
618
+ 0
619
+ 47
620
+ 101
621
+ 1
622
+ 63
623
+ 2
624
+ 47
625
+ 49
626
+ 2
627
+ 1
628
+ 11
629
+ I
630
+ 4
631
+ I
632
+ 0
633
+ I
634
+ 0
635
+ I
636
+ 0
637
+ I
638
+ -2
639
+ p
640
+ 3
641
+ s
642
+ 1
643
+ _
644
+ x
645
+ 4
646
+ to_s
647
+ x
648
+ 4
649
+ send
650
+ p
651
+ 3
652
+ I
653
+ 0
654
+ I
655
+ 15
656
+ I
657
+ 10
658
+ x
659
+ 109
660
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
661
+ p
662
+ 0
663
+ M
664
+ 1
665
+ p
666
+ 2
667
+ x
668
+ 9
669
+ for_block
670
+ t
671
+ n
672
+ x
673
+ 30
674
+ superclass_delegating_accessor
675
+ i
676
+ 26
677
+ 5
678
+ 21
679
+ 1
680
+ 0
681
+ 47
682
+ 101
683
+ 0
684
+ 63
685
+ 1
686
+ 47
687
+ 49
688
+ 1
689
+ 1
690
+ 10
691
+ 18
692
+ 2
693
+ 8
694
+ 19
695
+ 3
696
+ 10
697
+ 24
698
+ 2
699
+ 8
700
+ 25
701
+ 3
702
+ 11
703
+ I
704
+ 3
705
+ I
706
+ 0
707
+ I
708
+ 0
709
+ I
710
+ 0
711
+ I
712
+ -2
713
+ p
714
+ 2
715
+ x
716
+ 4
717
+ to_s
718
+ x
719
+ 4
720
+ send
721
+ p
722
+ 3
723
+ I
724
+ 0
725
+ I
726
+ 16
727
+ I
728
+ 1a
729
+ x
730
+ 109
731
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
732
+ p
733
+ 0
734
+ p
735
+ 15
736
+ I
737
+ -1
738
+ I
739
+ 7
740
+ I
741
+ e
742
+ I
743
+ a
744
+ I
745
+ 1d
746
+ I
747
+ f
748
+ I
749
+ 2a
750
+ I
751
+ 10
752
+ I
753
+ 3e
754
+ I
755
+ 11
756
+ I
757
+ 52
758
+ I
759
+ 15
760
+ I
761
+ 6b
762
+ I
763
+ 16
764
+ I
765
+ 8b
766
+ x
767
+ 109
768
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
769
+ p
770
+ 2
771
+ x
772
+ 4
773
+ name
774
+ x
775
+ 7
776
+ options
777
+ x
778
+ 17
779
+ method_visibility
780
+ x
781
+ 15
782
+ add_defn_method
783
+ x
784
+ 7
785
+ private
786
+ x
787
+ 23
788
+ _stash_object_in_method
789
+ M
790
+ 1
791
+ n
792
+ n
793
+ x
794
+ 23
795
+ _stash_object_in_method
796
+ i
797
+ 55
798
+ 23
799
+ 2
800
+ 10
801
+ 8
802
+ 2
803
+ 19
804
+ 2
805
+ 15
806
+ 5
807
+ 48
808
+ 0
809
+ 20
810
+ 1
811
+ 49
812
+ 1
813
+ 1
814
+ 15
815
+ 5
816
+ 48
817
+ 0
818
+ 7
819
+ 2
820
+ 20
821
+ 1
822
+ 56
823
+ 3
824
+ 50
825
+ 4
826
+ 2
827
+ 15
828
+ 5
829
+ 20
830
+ 1
831
+ 47
832
+ 49
833
+ 1
834
+ 1
835
+ 15
836
+ 20
837
+ 2
838
+ 9
839
+ 53
840
+ 5
841
+ 20
842
+ 1
843
+ 56
844
+ 5
845
+ 47
846
+ 50
847
+ 2
848
+ 1
849
+ 8
850
+ 54
851
+ 1
852
+ 11
853
+ I
854
+ 7
855
+ I
856
+ 3
857
+ I
858
+ 2
859
+ I
860
+ 3
861
+ n
862
+ p
863
+ 6
864
+ x
865
+ 15
866
+ singleton_class
867
+ x
868
+ 22
869
+ remove_possible_method
870
+ x
871
+ 13
872
+ define_method
873
+ M
874
+ 1
875
+ p
876
+ 2
877
+ x
878
+ 9
879
+ for_block
880
+ t
881
+ n
882
+ x
883
+ 23
884
+ _stash_object_in_method
885
+ i
886
+ 4
887
+ 21
888
+ 1
889
+ 0
890
+ 11
891
+ I
892
+ 2
893
+ I
894
+ 0
895
+ I
896
+ 0
897
+ I
898
+ 0
899
+ I
900
+ -2
901
+ p
902
+ 0
903
+ p
904
+ 3
905
+ I
906
+ 0
907
+ I
908
+ 20
909
+ I
910
+ 4
911
+ x
912
+ 109
913
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
914
+ p
915
+ 0
916
+ x
917
+ 4
918
+ send
919
+ M
920
+ 1
921
+ p
922
+ 2
923
+ x
924
+ 9
925
+ for_block
926
+ t
927
+ n
928
+ x
929
+ 23
930
+ _stash_object_in_method
931
+ i
932
+ 4
933
+ 21
934
+ 1
935
+ 0
936
+ 11
937
+ I
938
+ 2
939
+ I
940
+ 0
941
+ I
942
+ 0
943
+ I
944
+ 0
945
+ I
946
+ -2
947
+ p
948
+ 0
949
+ p
950
+ 3
951
+ I
952
+ 0
953
+ I
954
+ 22
955
+ I
956
+ 4
957
+ x
958
+ 109
959
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
960
+ p
961
+ 0
962
+ p
963
+ 11
964
+ I
965
+ -1
966
+ I
967
+ 1e
968
+ I
969
+ 8
970
+ I
971
+ 1f
972
+ I
973
+ 11
974
+ I
975
+ 20
976
+ I
977
+ 1e
978
+ I
979
+ 21
980
+ I
981
+ 26
982
+ I
983
+ 22
984
+ I
985
+ 37
986
+ x
987
+ 109
988
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
989
+ p
990
+ 3
991
+ x
992
+ 6
993
+ object
994
+ x
995
+ 6
996
+ method
997
+ x
998
+ 15
999
+ instance_reader
1000
+ x
1001
+ 31
1002
+ _superclass_delegating_accessor
1003
+ M
1004
+ 1
1005
+ n
1006
+ n
1007
+ x
1008
+ 31
1009
+ _superclass_delegating_accessor
1010
+ i
1011
+ 50
1012
+ 23
1013
+ 1
1014
+ 10
1015
+ 14
1016
+ 44
1017
+ 43
1018
+ 0
1019
+ 78
1020
+ 49
1021
+ 1
1022
+ 1
1023
+ 19
1024
+ 1
1025
+ 15
1026
+ 5
1027
+ 48
1028
+ 2
1029
+ 7
1030
+ 3
1031
+ 20
1032
+ 0
1033
+ 47
1034
+ 101
1035
+ 4
1036
+ 7
1037
+ 5
1038
+ 63
1039
+ 2
1040
+ 56
1041
+ 6
1042
+ 50
1043
+ 7
1044
+ 2
1045
+ 15
1046
+ 5
1047
+ 20
1048
+ 0
1049
+ 47
1050
+ 101
1051
+ 4
1052
+ 7
1053
+ 5
1054
+ 63
1055
+ 2
1056
+ 1
1057
+ 47
1058
+ 49
1059
+ 7
1060
+ 2
1061
+ 11
1062
+ I
1063
+ 6
1064
+ I
1065
+ 2
1066
+ I
1067
+ 1
1068
+ I
1069
+ 2
1070
+ n
1071
+ p
1072
+ 8
1073
+ x
1074
+ 4
1075
+ Hash
1076
+ x
1077
+ 16
1078
+ new_from_literal
1079
+ x
1080
+ 15
1081
+ singleton_class
1082
+ x
1083
+ 13
1084
+ define_method
1085
+ x
1086
+ 4
1087
+ to_s
1088
+ s
1089
+ 1
1090
+ =
1091
+ M
1092
+ 1
1093
+ p
1094
+ 2
1095
+ x
1096
+ 9
1097
+ for_block
1098
+ t
1099
+ n
1100
+ x
1101
+ 31
1102
+ _superclass_delegating_accessor
1103
+ i
1104
+ 32
1105
+ 57
1106
+ 19
1107
+ 0
1108
+ 15
1109
+ 5
1110
+ 20
1111
+ 0
1112
+ 21
1113
+ 1
1114
+ 0
1115
+ 21
1116
+ 1
1117
+ 1
1118
+ 7
1119
+ 0
1120
+ 49
1121
+ 1
1122
+ 1
1123
+ 3
1124
+ 83
1125
+ 2
1126
+ 10
1127
+ 26
1128
+ 2
1129
+ 8
1130
+ 27
1131
+ 3
1132
+ 47
1133
+ 49
1134
+ 3
1135
+ 3
1136
+ 11
1137
+ I
1138
+ 7
1139
+ I
1140
+ 1
1141
+ I
1142
+ 1
1143
+ I
1144
+ 1
1145
+ n
1146
+ p
1147
+ 4
1148
+ x
1149
+ 15
1150
+ instance_reader
1151
+ x
1152
+ 2
1153
+ []
1154
+ x
1155
+ 2
1156
+ ==
1157
+ x
1158
+ 23
1159
+ _stash_object_in_method
1160
+ p
1161
+ 5
1162
+ I
1163
+ 0
1164
+ I
1165
+ 26
1166
+ I
1167
+ 4
1168
+ I
1169
+ 27
1170
+ I
1171
+ 20
1172
+ x
1173
+ 109
1174
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
1175
+ p
1176
+ 1
1177
+ x
1178
+ 5
1179
+ value
1180
+ x
1181
+ 4
1182
+ send
1183
+ p
1184
+ 7
1185
+ I
1186
+ -1
1187
+ I
1188
+ 25
1189
+ I
1190
+ e
1191
+ I
1192
+ 26
1193
+ I
1194
+ 22
1195
+ I
1196
+ 29
1197
+ I
1198
+ 32
1199
+ x
1200
+ 109
1201
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
1202
+ p
1203
+ 2
1204
+ x
1205
+ 4
1206
+ name
1207
+ x
1208
+ 7
1209
+ options
1210
+ p
1211
+ 9
1212
+ I
1213
+ 2
1214
+ I
1215
+ 7
1216
+ I
1217
+ 10
1218
+ I
1219
+ 19
1220
+ I
1221
+ 14
1222
+ I
1223
+ 1e
1224
+ I
1225
+ 22
1226
+ I
1227
+ 25
1228
+ I
1229
+ 30
1230
+ x
1231
+ 109
1232
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
1233
+ p
1234
+ 0
1235
+ x
1236
+ 13
1237
+ attach_method
1238
+ p
1239
+ 11
1240
+ I
1241
+ 0
1242
+ I
1243
+ 1
1244
+ I
1245
+ 9
1246
+ I
1247
+ 2
1248
+ I
1249
+ 12
1250
+ I
1251
+ 3
1252
+ I
1253
+ 1b
1254
+ I
1255
+ 4
1256
+ I
1257
+ 24
1258
+ I
1259
+ 6
1260
+ I
1261
+ 41
1262
+ x
1263
+ 109
1264
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/delegating_attributes.rb
1265
+ p
1266
+ 0