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,3573 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 84
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
+ 15
39
+ 1
40
+ 15
41
+ 99
42
+ 7
43
+ 5
44
+ 1
45
+ 65
46
+ 49
47
+ 6
48
+ 3
49
+ 13
50
+ 99
51
+ 12
52
+ 7
53
+ 7
54
+ 12
55
+ 7
56
+ 8
57
+ 12
58
+ 65
59
+ 12
60
+ 49
61
+ 9
62
+ 4
63
+ 15
64
+ 49
65
+ 7
66
+ 0
67
+ 15
68
+ 99
69
+ 7
70
+ 5
71
+ 1
72
+ 65
73
+ 49
74
+ 6
75
+ 3
76
+ 13
77
+ 99
78
+ 12
79
+ 7
80
+ 7
81
+ 12
82
+ 7
83
+ 10
84
+ 12
85
+ 65
86
+ 12
87
+ 49
88
+ 9
89
+ 4
90
+ 15
91
+ 49
92
+ 7
93
+ 0
94
+ 15
95
+ 2
96
+ 11
97
+ I
98
+ 6
99
+ I
100
+ 0
101
+ I
102
+ 0
103
+ I
104
+ 0
105
+ n
106
+ p
107
+ 11
108
+ s
109
+ 41
110
+ active_support/core_ext/object/duplicable
111
+ x
112
+ 7
113
+ require
114
+ s
115
+ 45
116
+ active_support/core_ext/array/extract_options
117
+ x
118
+ 26
119
+ ClassInheritableAttributes
120
+ x
121
+ 11
122
+ open_module
123
+ x
124
+ 5
125
+ Class
126
+ x
127
+ 10
128
+ open_class
129
+ x
130
+ 14
131
+ __class_init__
132
+ M
133
+ 1
134
+ n
135
+ n
136
+ x
137
+ 5
138
+ Class
139
+ i
140
+ 239
141
+ 5
142
+ 66
143
+ 99
144
+ 7
145
+ 0
146
+ 7
147
+ 1
148
+ 65
149
+ 67
150
+ 49
151
+ 2
152
+ 0
153
+ 49
154
+ 3
155
+ 4
156
+ 15
157
+ 99
158
+ 7
159
+ 4
160
+ 7
161
+ 5
162
+ 65
163
+ 67
164
+ 49
165
+ 2
166
+ 0
167
+ 49
168
+ 3
169
+ 4
170
+ 15
171
+ 99
172
+ 7
173
+ 6
174
+ 7
175
+ 7
176
+ 65
177
+ 67
178
+ 49
179
+ 2
180
+ 0
181
+ 49
182
+ 3
183
+ 4
184
+ 15
185
+ 99
186
+ 7
187
+ 8
188
+ 7
189
+ 9
190
+ 65
191
+ 67
192
+ 49
193
+ 2
194
+ 0
195
+ 49
196
+ 3
197
+ 4
198
+ 15
199
+ 99
200
+ 7
201
+ 10
202
+ 7
203
+ 11
204
+ 65
205
+ 67
206
+ 49
207
+ 2
208
+ 0
209
+ 49
210
+ 3
211
+ 4
212
+ 15
213
+ 99
214
+ 7
215
+ 12
216
+ 7
217
+ 13
218
+ 65
219
+ 67
220
+ 49
221
+ 2
222
+ 0
223
+ 49
224
+ 3
225
+ 4
226
+ 15
227
+ 99
228
+ 7
229
+ 14
230
+ 7
231
+ 15
232
+ 65
233
+ 67
234
+ 49
235
+ 2
236
+ 0
237
+ 49
238
+ 3
239
+ 4
240
+ 15
241
+ 99
242
+ 7
243
+ 16
244
+ 7
245
+ 17
246
+ 65
247
+ 67
248
+ 49
249
+ 2
250
+ 0
251
+ 49
252
+ 3
253
+ 4
254
+ 15
255
+ 99
256
+ 7
257
+ 18
258
+ 7
259
+ 19
260
+ 65
261
+ 67
262
+ 49
263
+ 2
264
+ 0
265
+ 49
266
+ 3
267
+ 4
268
+ 15
269
+ 99
270
+ 7
271
+ 20
272
+ 7
273
+ 21
274
+ 65
275
+ 67
276
+ 49
277
+ 2
278
+ 0
279
+ 49
280
+ 3
281
+ 4
282
+ 15
283
+ 99
284
+ 7
285
+ 22
286
+ 7
287
+ 23
288
+ 65
289
+ 67
290
+ 49
291
+ 2
292
+ 0
293
+ 49
294
+ 3
295
+ 4
296
+ 15
297
+ 99
298
+ 7
299
+ 24
300
+ 7
301
+ 25
302
+ 65
303
+ 67
304
+ 49
305
+ 2
306
+ 0
307
+ 49
308
+ 3
309
+ 4
310
+ 15
311
+ 99
312
+ 7
313
+ 26
314
+ 7
315
+ 27
316
+ 65
317
+ 67
318
+ 49
319
+ 2
320
+ 0
321
+ 49
322
+ 3
323
+ 4
324
+ 15
325
+ 5
326
+ 48
327
+ 28
328
+ 15
329
+ 65
330
+ 7
331
+ 29
332
+ 44
333
+ 43
334
+ 30
335
+ 78
336
+ 49
337
+ 31
338
+ 1
339
+ 49
340
+ 32
341
+ 0
342
+ 49
343
+ 33
344
+ 2
345
+ 15
346
+ 99
347
+ 7
348
+ 34
349
+ 7
350
+ 35
351
+ 65
352
+ 67
353
+ 49
354
+ 2
355
+ 0
356
+ 49
357
+ 3
358
+ 4
359
+ 15
360
+ 65
361
+ 7
362
+ 36
363
+ 7
364
+ 37
365
+ 47
366
+ 49
367
+ 38
368
+ 2
369
+ 15
370
+ 65
371
+ 7
372
+ 37
373
+ 7
374
+ 34
375
+ 47
376
+ 49
377
+ 38
378
+ 2
379
+ 11
380
+ I
381
+ 5
382
+ I
383
+ 0
384
+ I
385
+ 0
386
+ I
387
+ 0
388
+ n
389
+ p
390
+ 39
391
+ x
392
+ 24
393
+ class_inheritable_reader
394
+ M
395
+ 1
396
+ n
397
+ n
398
+ x
399
+ 24
400
+ class_inheritable_reader
401
+ i
402
+ 16
403
+ 20
404
+ 0
405
+ 49
406
+ 0
407
+ 0
408
+ 19
409
+ 1
410
+ 15
411
+ 20
412
+ 0
413
+ 56
414
+ 1
415
+ 50
416
+ 2
417
+ 0
418
+ 11
419
+ I
420
+ 4
421
+ I
422
+ 2
423
+ I
424
+ 0
425
+ I
426
+ 0
427
+ I
428
+ 0
429
+ p
430
+ 3
431
+ x
432
+ 16
433
+ extract_options!
434
+ M
435
+ 1
436
+ p
437
+ 2
438
+ x
439
+ 9
440
+ for_block
441
+ t
442
+ n
443
+ x
444
+ 24
445
+ class_inheritable_reader
446
+ i
447
+ 92
448
+ 57
449
+ 19
450
+ 0
451
+ 15
452
+ 20
453
+ 0
454
+ 45
455
+ 0
456
+ 1
457
+ 49
458
+ 2
459
+ 1
460
+ 9
461
+ 18
462
+ 1
463
+ 11
464
+ 8
465
+ 19
466
+ 1
467
+ 15
468
+ 5
469
+ 7
470
+ 3
471
+ 20
472
+ 0
473
+ 47
474
+ 101
475
+ 4
476
+ 7
477
+ 5
478
+ 20
479
+ 0
480
+ 47
481
+ 101
482
+ 4
483
+ 7
484
+ 6
485
+ 21
486
+ 1
487
+ 1
488
+ 7
489
+ 7
490
+ 49
491
+ 8
492
+ 1
493
+ 3
494
+ 83
495
+ 9
496
+ 9
497
+ 53
498
+ 1
499
+ 8
500
+ 71
501
+ 7
502
+ 10
503
+ 20
504
+ 0
505
+ 47
506
+ 101
507
+ 4
508
+ 7
509
+ 11
510
+ 20
511
+ 0
512
+ 47
513
+ 101
514
+ 4
515
+ 7
516
+ 12
517
+ 63
518
+ 5
519
+ 47
520
+ 101
521
+ 4
522
+ 7
523
+ 13
524
+ 63
525
+ 7
526
+ 65
527
+ 49
528
+ 14
529
+ 0
530
+ 4
531
+ 42
532
+ 79
533
+ 81
534
+ 15
535
+ 47
536
+ 49
537
+ 16
538
+ 3
539
+ 11
540
+ I
541
+ d
542
+ I
543
+ 1
544
+ I
545
+ 1
546
+ I
547
+ 1
548
+ n
549
+ p
550
+ 17
551
+ x
552
+ 4
553
+ Hash
554
+ n
555
+ x
556
+ 5
557
+ is_a?
558
+ s
559
+ 17
560
+ def self.
561
+ x
562
+ 4
563
+ to_s
564
+ s
565
+ 91
566
+ # def self.after_add
567
+ read_inheritable_attribute(:
568
+ s
569
+ 180
570
+ ) # read_inheritable_attribute(:after_add)
571
+ end # end
572
+ #
573
+
574
+ x
575
+ 15
576
+ instance_reader
577
+ x
578
+ 2
579
+ []
580
+ x
581
+ 2
582
+ ==
583
+ s
584
+ 58
585
+ #
586
+ def
587
+ s
588
+ 74
589
+ # def after_add
590
+ self.class.
591
+ s
592
+ 122
593
+ # self.class.after_add
594
+ end # end
595
+
596
+ s
597
+ 78
598
+ # # the reader above is generated unless options[:instance_reader] == false
599
+
600
+ x
601
+ 11
602
+ active_path
603
+ x
604
+ 1
605
+ +
606
+ x
607
+ 10
608
+ class_eval
609
+ p
610
+ 21
611
+ I
612
+ 0
613
+ I
614
+ 28
615
+ I
616
+ 4
617
+ I
618
+ 29
619
+ I
620
+ 14
621
+ I
622
+ 2a
623
+ I
624
+ 15
625
+ I
626
+ 2b
627
+ I
628
+ 1e
629
+ I
630
+ 2c
631
+ I
632
+ 25
633
+ I
634
+ 33
635
+ I
636
+ 35
637
+ I
638
+ 2f
639
+ I
640
+ 37
641
+ I
642
+ 30
643
+ I
644
+ 3e
645
+ I
646
+ 31
647
+ I
648
+ 4e
649
+ I
650
+ 2a
651
+ I
652
+ 5c
653
+ x
654
+ 110
655
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
656
+ p
657
+ 1
658
+ x
659
+ 3
660
+ sym
661
+ x
662
+ 4
663
+ each
664
+ p
665
+ 7
666
+ I
667
+ -1
668
+ I
669
+ 26
670
+ I
671
+ 0
672
+ I
673
+ 27
674
+ I
675
+ 8
676
+ I
677
+ 28
678
+ I
679
+ 10
680
+ x
681
+ 110
682
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
683
+ p
684
+ 2
685
+ x
686
+ 4
687
+ syms
688
+ x
689
+ 7
690
+ options
691
+ x
692
+ 17
693
+ method_visibility
694
+ x
695
+ 15
696
+ add_defn_method
697
+ x
698
+ 24
699
+ class_inheritable_writer
700
+ M
701
+ 1
702
+ n
703
+ n
704
+ x
705
+ 24
706
+ class_inheritable_writer
707
+ i
708
+ 16
709
+ 20
710
+ 0
711
+ 49
712
+ 0
713
+ 0
714
+ 19
715
+ 1
716
+ 15
717
+ 20
718
+ 0
719
+ 56
720
+ 1
721
+ 50
722
+ 2
723
+ 0
724
+ 11
725
+ I
726
+ 4
727
+ I
728
+ 2
729
+ I
730
+ 0
731
+ I
732
+ 0
733
+ I
734
+ 0
735
+ p
736
+ 3
737
+ x
738
+ 16
739
+ extract_options!
740
+ M
741
+ 1
742
+ p
743
+ 2
744
+ x
745
+ 9
746
+ for_block
747
+ t
748
+ n
749
+ x
750
+ 24
751
+ class_inheritable_writer
752
+ i
753
+ 76
754
+ 57
755
+ 19
756
+ 0
757
+ 15
758
+ 5
759
+ 7
760
+ 0
761
+ 20
762
+ 0
763
+ 47
764
+ 101
765
+ 1
766
+ 7
767
+ 2
768
+ 20
769
+ 0
770
+ 47
771
+ 101
772
+ 1
773
+ 7
774
+ 3
775
+ 21
776
+ 1
777
+ 1
778
+ 7
779
+ 4
780
+ 49
781
+ 5
782
+ 1
783
+ 3
784
+ 83
785
+ 6
786
+ 9
787
+ 37
788
+ 1
789
+ 8
790
+ 55
791
+ 7
792
+ 7
793
+ 20
794
+ 0
795
+ 47
796
+ 101
797
+ 1
798
+ 7
799
+ 8
800
+ 20
801
+ 0
802
+ 47
803
+ 101
804
+ 1
805
+ 7
806
+ 9
807
+ 63
808
+ 5
809
+ 47
810
+ 101
811
+ 1
812
+ 7
813
+ 10
814
+ 63
815
+ 7
816
+ 65
817
+ 49
818
+ 11
819
+ 0
820
+ 4
821
+ 59
822
+ 79
823
+ 81
824
+ 12
825
+ 47
826
+ 49
827
+ 13
828
+ 3
829
+ 11
830
+ I
831
+ d
832
+ I
833
+ 1
834
+ I
835
+ 1
836
+ I
837
+ 1
838
+ n
839
+ p
840
+ 14
841
+ s
842
+ 17
843
+ def self.
844
+ x
845
+ 4
846
+ to_s
847
+ s
848
+ 94
849
+ =(obj) # def self.color=(obj)
850
+ write_inheritable_attribute(:
851
+ s
852
+ 181
853
+ , obj) # write_inheritable_attribute(:color, obj)
854
+ end # end
855
+ #
856
+
857
+ x
858
+ 15
859
+ instance_writer
860
+ x
861
+ 2
862
+ []
863
+ x
864
+ 2
865
+ ==
866
+ s
867
+ 58
868
+ #
869
+ def
870
+ s
871
+ 76
872
+ =(obj) # def color=(obj)
873
+ self.class.
874
+ s
875
+ 124
876
+ = obj # self.class.color = obj
877
+ end # end
878
+
879
+ s
880
+ 78
881
+ # # the writer above is generated unless options[:instance_writer] == false
882
+
883
+ x
884
+ 11
885
+ active_path
886
+ x
887
+ 1
888
+ +
889
+ x
890
+ 10
891
+ class_eval
892
+ p
893
+ 19
894
+ I
895
+ 0
896
+ I
897
+ 3a
898
+ I
899
+ 4
900
+ I
901
+ 3b
902
+ I
903
+ 5
904
+ I
905
+ 3c
906
+ I
907
+ e
908
+ I
909
+ 3d
910
+ I
911
+ 15
912
+ I
913
+ 44
914
+ I
915
+ 25
916
+ I
917
+ 40
918
+ I
919
+ 27
920
+ I
921
+ 41
922
+ I
923
+ 2e
924
+ I
925
+ 42
926
+ I
927
+ 3e
928
+ I
929
+ 3b
930
+ I
931
+ 4c
932
+ x
933
+ 110
934
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
935
+ p
936
+ 1
937
+ x
938
+ 3
939
+ sym
940
+ x
941
+ 4
942
+ each
943
+ p
944
+ 7
945
+ I
946
+ -1
947
+ I
948
+ 38
949
+ I
950
+ 0
951
+ I
952
+ 39
953
+ I
954
+ 8
955
+ I
956
+ 3a
957
+ I
958
+ 10
959
+ x
960
+ 110
961
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
962
+ p
963
+ 2
964
+ x
965
+ 4
966
+ syms
967
+ x
968
+ 7
969
+ options
970
+ x
971
+ 30
972
+ class_inheritable_array_writer
973
+ M
974
+ 1
975
+ n
976
+ n
977
+ x
978
+ 30
979
+ class_inheritable_array_writer
980
+ i
981
+ 16
982
+ 20
983
+ 0
984
+ 49
985
+ 0
986
+ 0
987
+ 19
988
+ 1
989
+ 15
990
+ 20
991
+ 0
992
+ 56
993
+ 1
994
+ 50
995
+ 2
996
+ 0
997
+ 11
998
+ I
999
+ 4
1000
+ I
1001
+ 2
1002
+ I
1003
+ 0
1004
+ I
1005
+ 0
1006
+ I
1007
+ 0
1008
+ p
1009
+ 3
1010
+ x
1011
+ 16
1012
+ extract_options!
1013
+ M
1014
+ 1
1015
+ p
1016
+ 2
1017
+ x
1018
+ 9
1019
+ for_block
1020
+ t
1021
+ n
1022
+ x
1023
+ 30
1024
+ class_inheritable_array_writer
1025
+ i
1026
+ 76
1027
+ 57
1028
+ 19
1029
+ 0
1030
+ 15
1031
+ 5
1032
+ 7
1033
+ 0
1034
+ 20
1035
+ 0
1036
+ 47
1037
+ 101
1038
+ 1
1039
+ 7
1040
+ 2
1041
+ 20
1042
+ 0
1043
+ 47
1044
+ 101
1045
+ 1
1046
+ 7
1047
+ 3
1048
+ 21
1049
+ 1
1050
+ 1
1051
+ 7
1052
+ 4
1053
+ 49
1054
+ 5
1055
+ 1
1056
+ 3
1057
+ 83
1058
+ 6
1059
+ 9
1060
+ 37
1061
+ 1
1062
+ 8
1063
+ 55
1064
+ 7
1065
+ 7
1066
+ 20
1067
+ 0
1068
+ 47
1069
+ 101
1070
+ 1
1071
+ 7
1072
+ 8
1073
+ 20
1074
+ 0
1075
+ 47
1076
+ 101
1077
+ 1
1078
+ 7
1079
+ 9
1080
+ 63
1081
+ 5
1082
+ 47
1083
+ 101
1084
+ 1
1085
+ 7
1086
+ 10
1087
+ 63
1088
+ 7
1089
+ 65
1090
+ 49
1091
+ 11
1092
+ 0
1093
+ 4
1094
+ 76
1095
+ 79
1096
+ 81
1097
+ 12
1098
+ 47
1099
+ 49
1100
+ 13
1101
+ 3
1102
+ 11
1103
+ I
1104
+ d
1105
+ I
1106
+ 1
1107
+ I
1108
+ 1
1109
+ I
1110
+ 1
1111
+ n
1112
+ p
1113
+ 14
1114
+ s
1115
+ 17
1116
+ def self.
1117
+ x
1118
+ 4
1119
+ to_s
1120
+ s
1121
+ 91
1122
+ =(obj) # def self.levels=(obj)
1123
+ write_inheritable_array(:
1124
+ s
1125
+ 182
1126
+ , obj) # write_inheritable_array(:levels, obj)
1127
+ end # end
1128
+ #
1129
+
1130
+ x
1131
+ 15
1132
+ instance_writer
1133
+ x
1134
+ 2
1135
+ []
1136
+ x
1137
+ 2
1138
+ ==
1139
+ s
1140
+ 58
1141
+ #
1142
+ def
1143
+ s
1144
+ 77
1145
+ =(obj) # def levels=(obj)
1146
+ self.class.
1147
+ s
1148
+ 125
1149
+ = obj # self.class.levels = obj
1150
+ end # end
1151
+
1152
+ s
1153
+ 78
1154
+ # # the writer above is generated unless options[:instance_writer] == false
1155
+
1156
+ x
1157
+ 11
1158
+ active_path
1159
+ x
1160
+ 1
1161
+ +
1162
+ x
1163
+ 10
1164
+ class_eval
1165
+ p
1166
+ 19
1167
+ I
1168
+ 0
1169
+ I
1170
+ 4b
1171
+ I
1172
+ 4
1173
+ I
1174
+ 4c
1175
+ I
1176
+ 5
1177
+ I
1178
+ 4d
1179
+ I
1180
+ e
1181
+ I
1182
+ 4e
1183
+ I
1184
+ 15
1185
+ I
1186
+ 55
1187
+ I
1188
+ 25
1189
+ I
1190
+ 51
1191
+ I
1192
+ 27
1193
+ I
1194
+ 52
1195
+ I
1196
+ 2e
1197
+ I
1198
+ 53
1199
+ I
1200
+ 3e
1201
+ I
1202
+ 4c
1203
+ I
1204
+ 4c
1205
+ x
1206
+ 110
1207
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
1208
+ p
1209
+ 1
1210
+ x
1211
+ 3
1212
+ sym
1213
+ x
1214
+ 4
1215
+ each
1216
+ p
1217
+ 7
1218
+ I
1219
+ -1
1220
+ I
1221
+ 49
1222
+ I
1223
+ 0
1224
+ I
1225
+ 4a
1226
+ I
1227
+ 8
1228
+ I
1229
+ 4b
1230
+ I
1231
+ 10
1232
+ x
1233
+ 110
1234
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
1235
+ p
1236
+ 2
1237
+ x
1238
+ 4
1239
+ syms
1240
+ x
1241
+ 7
1242
+ options
1243
+ x
1244
+ 29
1245
+ class_inheritable_hash_writer
1246
+ M
1247
+ 1
1248
+ n
1249
+ n
1250
+ x
1251
+ 29
1252
+ class_inheritable_hash_writer
1253
+ i
1254
+ 16
1255
+ 20
1256
+ 0
1257
+ 49
1258
+ 0
1259
+ 0
1260
+ 19
1261
+ 1
1262
+ 15
1263
+ 20
1264
+ 0
1265
+ 56
1266
+ 1
1267
+ 50
1268
+ 2
1269
+ 0
1270
+ 11
1271
+ I
1272
+ 4
1273
+ I
1274
+ 2
1275
+ I
1276
+ 0
1277
+ I
1278
+ 0
1279
+ I
1280
+ 0
1281
+ p
1282
+ 3
1283
+ x
1284
+ 16
1285
+ extract_options!
1286
+ M
1287
+ 1
1288
+ p
1289
+ 2
1290
+ x
1291
+ 9
1292
+ for_block
1293
+ t
1294
+ n
1295
+ x
1296
+ 29
1297
+ class_inheritable_hash_writer
1298
+ i
1299
+ 76
1300
+ 57
1301
+ 19
1302
+ 0
1303
+ 15
1304
+ 5
1305
+ 7
1306
+ 0
1307
+ 20
1308
+ 0
1309
+ 47
1310
+ 101
1311
+ 1
1312
+ 7
1313
+ 2
1314
+ 20
1315
+ 0
1316
+ 47
1317
+ 101
1318
+ 1
1319
+ 7
1320
+ 3
1321
+ 21
1322
+ 1
1323
+ 1
1324
+ 7
1325
+ 4
1326
+ 49
1327
+ 5
1328
+ 1
1329
+ 3
1330
+ 83
1331
+ 6
1332
+ 9
1333
+ 37
1334
+ 1
1335
+ 8
1336
+ 55
1337
+ 7
1338
+ 7
1339
+ 20
1340
+ 0
1341
+ 47
1342
+ 101
1343
+ 1
1344
+ 7
1345
+ 8
1346
+ 20
1347
+ 0
1348
+ 47
1349
+ 101
1350
+ 1
1351
+ 7
1352
+ 9
1353
+ 63
1354
+ 5
1355
+ 47
1356
+ 101
1357
+ 1
1358
+ 7
1359
+ 10
1360
+ 63
1361
+ 7
1362
+ 65
1363
+ 49
1364
+ 11
1365
+ 0
1366
+ 4
1367
+ 93
1368
+ 79
1369
+ 81
1370
+ 12
1371
+ 47
1372
+ 49
1373
+ 13
1374
+ 3
1375
+ 11
1376
+ I
1377
+ d
1378
+ I
1379
+ 1
1380
+ I
1381
+ 1
1382
+ I
1383
+ 1
1384
+ n
1385
+ p
1386
+ 14
1387
+ s
1388
+ 17
1389
+ def self.
1390
+ x
1391
+ 4
1392
+ to_s
1393
+ s
1394
+ 93
1395
+ =(obj) # def self.nicknames=(obj)
1396
+ write_inheritable_hash(:
1397
+ s
1398
+ 185
1399
+ , obj) # write_inheritable_hash(:nicknames, obj)
1400
+ end # end
1401
+ #
1402
+
1403
+ x
1404
+ 15
1405
+ instance_writer
1406
+ x
1407
+ 2
1408
+ []
1409
+ x
1410
+ 2
1411
+ ==
1412
+ s
1413
+ 58
1414
+ #
1415
+ def
1416
+ s
1417
+ 80
1418
+ =(obj) # def nicknames=(obj)
1419
+ self.class.
1420
+ s
1421
+ 128
1422
+ = obj # self.class.nicknames = obj
1423
+ end # end
1424
+
1425
+ s
1426
+ 78
1427
+ # # the writer above is generated unless options[:instance_writer] == false
1428
+
1429
+ x
1430
+ 11
1431
+ active_path
1432
+ x
1433
+ 1
1434
+ +
1435
+ x
1436
+ 10
1437
+ class_eval
1438
+ p
1439
+ 19
1440
+ I
1441
+ 0
1442
+ I
1443
+ 5c
1444
+ I
1445
+ 4
1446
+ I
1447
+ 5d
1448
+ I
1449
+ 5
1450
+ I
1451
+ 5e
1452
+ I
1453
+ e
1454
+ I
1455
+ 5f
1456
+ I
1457
+ 15
1458
+ I
1459
+ 66
1460
+ I
1461
+ 25
1462
+ I
1463
+ 62
1464
+ I
1465
+ 27
1466
+ I
1467
+ 63
1468
+ I
1469
+ 2e
1470
+ I
1471
+ 64
1472
+ I
1473
+ 3e
1474
+ I
1475
+ 5d
1476
+ I
1477
+ 4c
1478
+ x
1479
+ 110
1480
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
1481
+ p
1482
+ 1
1483
+ x
1484
+ 3
1485
+ sym
1486
+ x
1487
+ 4
1488
+ each
1489
+ p
1490
+ 7
1491
+ I
1492
+ -1
1493
+ I
1494
+ 5a
1495
+ I
1496
+ 0
1497
+ I
1498
+ 5b
1499
+ I
1500
+ 8
1501
+ I
1502
+ 5c
1503
+ I
1504
+ 10
1505
+ x
1506
+ 110
1507
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
1508
+ p
1509
+ 2
1510
+ x
1511
+ 4
1512
+ syms
1513
+ x
1514
+ 7
1515
+ options
1516
+ x
1517
+ 26
1518
+ class_inheritable_accessor
1519
+ M
1520
+ 1
1521
+ n
1522
+ n
1523
+ x
1524
+ 26
1525
+ class_inheritable_accessor
1526
+ i
1527
+ 20
1528
+ 5
1529
+ 20
1530
+ 0
1531
+ 36
1532
+ 1
1533
+ 47
1534
+ 51
1535
+ 0
1536
+ 0
1537
+ 15
1538
+ 5
1539
+ 20
1540
+ 0
1541
+ 36
1542
+ 1
1543
+ 47
1544
+ 51
1545
+ 1
1546
+ 0
1547
+ 11
1548
+ I
1549
+ 4
1550
+ I
1551
+ 1
1552
+ I
1553
+ 0
1554
+ I
1555
+ 0
1556
+ I
1557
+ 0
1558
+ p
1559
+ 2
1560
+ x
1561
+ 24
1562
+ class_inheritable_reader
1563
+ x
1564
+ 24
1565
+ class_inheritable_writer
1566
+ p
1567
+ 7
1568
+ I
1569
+ -1
1570
+ I
1571
+ 6b
1572
+ I
1573
+ 0
1574
+ I
1575
+ 6c
1576
+ I
1577
+ a
1578
+ I
1579
+ 6d
1580
+ I
1581
+ 14
1582
+ x
1583
+ 110
1584
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
1585
+ p
1586
+ 1
1587
+ x
1588
+ 4
1589
+ syms
1590
+ x
1591
+ 23
1592
+ class_inheritable_array
1593
+ M
1594
+ 1
1595
+ n
1596
+ n
1597
+ x
1598
+ 23
1599
+ class_inheritable_array
1600
+ i
1601
+ 20
1602
+ 5
1603
+ 20
1604
+ 0
1605
+ 36
1606
+ 1
1607
+ 47
1608
+ 51
1609
+ 0
1610
+ 0
1611
+ 15
1612
+ 5
1613
+ 20
1614
+ 0
1615
+ 36
1616
+ 1
1617
+ 47
1618
+ 51
1619
+ 1
1620
+ 0
1621
+ 11
1622
+ I
1623
+ 4
1624
+ I
1625
+ 1
1626
+ I
1627
+ 0
1628
+ I
1629
+ 0
1630
+ I
1631
+ 0
1632
+ p
1633
+ 2
1634
+ x
1635
+ 24
1636
+ class_inheritable_reader
1637
+ x
1638
+ 30
1639
+ class_inheritable_array_writer
1640
+ p
1641
+ 7
1642
+ I
1643
+ -1
1644
+ I
1645
+ 70
1646
+ I
1647
+ 0
1648
+ I
1649
+ 71
1650
+ I
1651
+ a
1652
+ I
1653
+ 72
1654
+ I
1655
+ 14
1656
+ x
1657
+ 110
1658
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
1659
+ p
1660
+ 1
1661
+ x
1662
+ 4
1663
+ syms
1664
+ x
1665
+ 22
1666
+ class_inheritable_hash
1667
+ M
1668
+ 1
1669
+ n
1670
+ n
1671
+ x
1672
+ 22
1673
+ class_inheritable_hash
1674
+ i
1675
+ 20
1676
+ 5
1677
+ 20
1678
+ 0
1679
+ 36
1680
+ 1
1681
+ 47
1682
+ 51
1683
+ 0
1684
+ 0
1685
+ 15
1686
+ 5
1687
+ 20
1688
+ 0
1689
+ 36
1690
+ 1
1691
+ 47
1692
+ 51
1693
+ 1
1694
+ 0
1695
+ 11
1696
+ I
1697
+ 4
1698
+ I
1699
+ 1
1700
+ I
1701
+ 0
1702
+ I
1703
+ 0
1704
+ I
1705
+ 0
1706
+ p
1707
+ 2
1708
+ x
1709
+ 24
1710
+ class_inheritable_reader
1711
+ x
1712
+ 29
1713
+ class_inheritable_hash_writer
1714
+ p
1715
+ 7
1716
+ I
1717
+ -1
1718
+ I
1719
+ 75
1720
+ I
1721
+ 0
1722
+ I
1723
+ 76
1724
+ I
1725
+ a
1726
+ I
1727
+ 77
1728
+ I
1729
+ 14
1730
+ x
1731
+ 110
1732
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
1733
+ p
1734
+ 1
1735
+ x
1736
+ 4
1737
+ syms
1738
+ x
1739
+ 22
1740
+ inheritable_attributes
1741
+ M
1742
+ 1
1743
+ n
1744
+ n
1745
+ x
1746
+ 22
1747
+ inheritable_attributes
1748
+ i
1749
+ 12
1750
+ 39
1751
+ 0
1752
+ 13
1753
+ 10
1754
+ 11
1755
+ 15
1756
+ 45
1757
+ 1
1758
+ 2
1759
+ 38
1760
+ 0
1761
+ 11
1762
+ I
1763
+ 2
1764
+ I
1765
+ 0
1766
+ I
1767
+ 0
1768
+ I
1769
+ 0
1770
+ n
1771
+ p
1772
+ 3
1773
+ x
1774
+ 23
1775
+ @inheritable_attributes
1776
+ x
1777
+ 28
1778
+ EMPTY_INHERITABLE_ATTRIBUTES
1779
+ n
1780
+ p
1781
+ 5
1782
+ I
1783
+ -1
1784
+ I
1785
+ 7a
1786
+ I
1787
+ 0
1788
+ I
1789
+ 7b
1790
+ I
1791
+ c
1792
+ x
1793
+ 110
1794
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
1795
+ p
1796
+ 0
1797
+ x
1798
+ 27
1799
+ write_inheritable_attribute
1800
+ M
1801
+ 1
1802
+ n
1803
+ n
1804
+ x
1805
+ 27
1806
+ write_inheritable_attribute
1807
+ i
1808
+ 39
1809
+ 5
1810
+ 48
1811
+ 0
1812
+ 45
1813
+ 1
1814
+ 2
1815
+ 49
1816
+ 3
1817
+ 1
1818
+ 9
1819
+ 22
1820
+ 44
1821
+ 43
1822
+ 4
1823
+ 78
1824
+ 49
1825
+ 5
1826
+ 1
1827
+ 38
1828
+ 6
1829
+ 8
1830
+ 23
1831
+ 1
1832
+ 15
1833
+ 5
1834
+ 48
1835
+ 0
1836
+ 20
1837
+ 0
1838
+ 20
1839
+ 1
1840
+ 13
1841
+ 18
1842
+ 3
1843
+ 49
1844
+ 7
1845
+ 2
1846
+ 15
1847
+ 11
1848
+ I
1849
+ 6
1850
+ I
1851
+ 2
1852
+ I
1853
+ 2
1854
+ I
1855
+ 2
1856
+ n
1857
+ p
1858
+ 8
1859
+ x
1860
+ 22
1861
+ inheritable_attributes
1862
+ x
1863
+ 28
1864
+ EMPTY_INHERITABLE_ATTRIBUTES
1865
+ n
1866
+ x
1867
+ 6
1868
+ equal?
1869
+ x
1870
+ 4
1871
+ Hash
1872
+ x
1873
+ 16
1874
+ new_from_literal
1875
+ x
1876
+ 23
1877
+ @inheritable_attributes
1878
+ x
1879
+ 3
1880
+ []=
1881
+ p
1882
+ 11
1883
+ I
1884
+ -1
1885
+ I
1886
+ 7e
1887
+ I
1888
+ 0
1889
+ I
1890
+ 7f
1891
+ I
1892
+ b
1893
+ I
1894
+ 80
1895
+ I
1896
+ 16
1897
+ I
1898
+ 7f
1899
+ I
1900
+ 18
1901
+ I
1902
+ 82
1903
+ I
1904
+ 27
1905
+ x
1906
+ 110
1907
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
1908
+ p
1909
+ 2
1910
+ x
1911
+ 3
1912
+ key
1913
+ x
1914
+ 5
1915
+ value
1916
+ x
1917
+ 23
1918
+ write_inheritable_array
1919
+ M
1920
+ 1
1921
+ n
1922
+ n
1923
+ x
1924
+ 23
1925
+ write_inheritable_array
1926
+ i
1927
+ 44
1928
+ 5
1929
+ 20
1930
+ 0
1931
+ 47
1932
+ 49
1933
+ 0
1934
+ 1
1935
+ 49
1936
+ 1
1937
+ 0
1938
+ 9
1939
+ 23
1940
+ 5
1941
+ 20
1942
+ 0
1943
+ 35
1944
+ 0
1945
+ 47
1946
+ 49
1947
+ 2
1948
+ 2
1949
+ 8
1950
+ 24
1951
+ 1
1952
+ 15
1953
+ 5
1954
+ 20
1955
+ 0
1956
+ 5
1957
+ 20
1958
+ 0
1959
+ 47
1960
+ 49
1961
+ 0
1962
+ 1
1963
+ 20
1964
+ 1
1965
+ 81
1966
+ 3
1967
+ 47
1968
+ 49
1969
+ 2
1970
+ 2
1971
+ 11
1972
+ I
1973
+ 6
1974
+ I
1975
+ 2
1976
+ I
1977
+ 2
1978
+ I
1979
+ 2
1980
+ n
1981
+ p
1982
+ 4
1983
+ x
1984
+ 26
1985
+ read_inheritable_attribute
1986
+ x
1987
+ 4
1988
+ nil?
1989
+ x
1990
+ 27
1991
+ write_inheritable_attribute
1992
+ x
1993
+ 1
1994
+ +
1995
+ p
1996
+ 7
1997
+ I
1998
+ -1
1999
+ I
2000
+ 85
2001
+ I
2002
+ 0
2003
+ I
2004
+ 86
2005
+ I
2006
+ 19
2007
+ I
2008
+ 87
2009
+ I
2010
+ 2c
2011
+ x
2012
+ 110
2013
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
2014
+ p
2015
+ 2
2016
+ x
2017
+ 3
2018
+ key
2019
+ x
2020
+ 8
2021
+ elements
2022
+ x
2023
+ 22
2024
+ write_inheritable_hash
2025
+ M
2026
+ 1
2027
+ n
2028
+ n
2029
+ x
2030
+ 22
2031
+ write_inheritable_hash
2032
+ i
2033
+ 50
2034
+ 5
2035
+ 20
2036
+ 0
2037
+ 47
2038
+ 49
2039
+ 0
2040
+ 1
2041
+ 49
2042
+ 1
2043
+ 0
2044
+ 9
2045
+ 28
2046
+ 5
2047
+ 20
2048
+ 0
2049
+ 44
2050
+ 43
2051
+ 2
2052
+ 78
2053
+ 49
2054
+ 3
2055
+ 1
2056
+ 47
2057
+ 49
2058
+ 4
2059
+ 2
2060
+ 8
2061
+ 29
2062
+ 1
2063
+ 15
2064
+ 5
2065
+ 20
2066
+ 0
2067
+ 5
2068
+ 20
2069
+ 0
2070
+ 47
2071
+ 49
2072
+ 0
2073
+ 1
2074
+ 20
2075
+ 1
2076
+ 49
2077
+ 5
2078
+ 1
2079
+ 47
2080
+ 49
2081
+ 4
2082
+ 2
2083
+ 11
2084
+ I
2085
+ 6
2086
+ I
2087
+ 2
2088
+ I
2089
+ 2
2090
+ I
2091
+ 2
2092
+ n
2093
+ p
2094
+ 6
2095
+ x
2096
+ 26
2097
+ read_inheritable_attribute
2098
+ x
2099
+ 4
2100
+ nil?
2101
+ x
2102
+ 4
2103
+ Hash
2104
+ x
2105
+ 16
2106
+ new_from_literal
2107
+ x
2108
+ 27
2109
+ write_inheritable_attribute
2110
+ x
2111
+ 5
2112
+ merge
2113
+ p
2114
+ 7
2115
+ I
2116
+ -1
2117
+ I
2118
+ 8a
2119
+ I
2120
+ 0
2121
+ I
2122
+ 8b
2123
+ I
2124
+ 1e
2125
+ I
2126
+ 8c
2127
+ I
2128
+ 32
2129
+ x
2130
+ 110
2131
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
2132
+ p
2133
+ 2
2134
+ x
2135
+ 3
2136
+ key
2137
+ x
2138
+ 4
2139
+ hash
2140
+ x
2141
+ 26
2142
+ read_inheritable_attribute
2143
+ M
2144
+ 1
2145
+ n
2146
+ n
2147
+ x
2148
+ 26
2149
+ read_inheritable_attribute
2150
+ i
2151
+ 9
2152
+ 5
2153
+ 48
2154
+ 0
2155
+ 20
2156
+ 0
2157
+ 49
2158
+ 1
2159
+ 1
2160
+ 11
2161
+ I
2162
+ 3
2163
+ I
2164
+ 1
2165
+ I
2166
+ 1
2167
+ I
2168
+ 1
2169
+ n
2170
+ p
2171
+ 2
2172
+ x
2173
+ 22
2174
+ inheritable_attributes
2175
+ x
2176
+ 2
2177
+ []
2178
+ p
2179
+ 5
2180
+ I
2181
+ -1
2182
+ I
2183
+ 8f
2184
+ I
2185
+ 0
2186
+ I
2187
+ 90
2188
+ I
2189
+ 9
2190
+ x
2191
+ 110
2192
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
2193
+ p
2194
+ 1
2195
+ x
2196
+ 3
2197
+ key
2198
+ x
2199
+ 28
2200
+ reset_inheritable_attributes
2201
+ M
2202
+ 1
2203
+ n
2204
+ n
2205
+ x
2206
+ 28
2207
+ reset_inheritable_attributes
2208
+ i
2209
+ 6
2210
+ 45
2211
+ 0
2212
+ 1
2213
+ 38
2214
+ 2
2215
+ 11
2216
+ I
2217
+ 1
2218
+ I
2219
+ 0
2220
+ I
2221
+ 0
2222
+ I
2223
+ 0
2224
+ n
2225
+ p
2226
+ 3
2227
+ x
2228
+ 28
2229
+ EMPTY_INHERITABLE_ATTRIBUTES
2230
+ n
2231
+ x
2232
+ 23
2233
+ @inheritable_attributes
2234
+ p
2235
+ 5
2236
+ I
2237
+ -1
2238
+ I
2239
+ 93
2240
+ I
2241
+ 0
2242
+ I
2243
+ 94
2244
+ I
2245
+ 6
2246
+ x
2247
+ 110
2248
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
2249
+ p
2250
+ 0
2251
+ x
2252
+ 7
2253
+ private
2254
+ x
2255
+ 28
2256
+ EMPTY_INHERITABLE_ATTRIBUTES
2257
+ x
2258
+ 4
2259
+ Hash
2260
+ x
2261
+ 16
2262
+ new_from_literal
2263
+ x
2264
+ 6
2265
+ freeze
2266
+ x
2267
+ 9
2268
+ const_set
2269
+ x
2270
+ 37
2271
+ inherited_with_inheritable_attributes
2272
+ M
2273
+ 1
2274
+ n
2275
+ n
2276
+ x
2277
+ 37
2278
+ inherited_with_inheritable_attributes
2279
+ i
2280
+ 67
2281
+ 5
2282
+ 7
2283
+ 0
2284
+ 47
2285
+ 49
2286
+ 1
2287
+ 1
2288
+ 9
2289
+ 18
2290
+ 5
2291
+ 20
2292
+ 0
2293
+ 47
2294
+ 49
2295
+ 0
2296
+ 1
2297
+ 8
2298
+ 19
2299
+ 1
2300
+ 15
2301
+ 5
2302
+ 48
2303
+ 2
2304
+ 45
2305
+ 3
2306
+ 4
2307
+ 49
2308
+ 5
2309
+ 1
2310
+ 9
2311
+ 38
2312
+ 45
2313
+ 3
2314
+ 6
2315
+ 19
2316
+ 1
2317
+ 8
2318
+ 55
2319
+ 5
2320
+ 48
2321
+ 2
2322
+ 44
2323
+ 43
2324
+ 7
2325
+ 78
2326
+ 49
2327
+ 8
2328
+ 1
2329
+ 56
2330
+ 9
2331
+ 50
2332
+ 10
2333
+ 1
2334
+ 19
2335
+ 1
2336
+ 15
2337
+ 20
2338
+ 0
2339
+ 7
2340
+ 11
2341
+ 64
2342
+ 20
2343
+ 1
2344
+ 49
2345
+ 12
2346
+ 2
2347
+ 11
2348
+ I
2349
+ 5
2350
+ I
2351
+ 2
2352
+ I
2353
+ 1
2354
+ I
2355
+ 1
2356
+ n
2357
+ p
2358
+ 13
2359
+ x
2360
+ 40
2361
+ inherited_without_inheritable_attributes
2362
+ x
2363
+ 11
2364
+ respond_to?
2365
+ x
2366
+ 22
2367
+ inheritable_attributes
2368
+ x
2369
+ 28
2370
+ EMPTY_INHERITABLE_ATTRIBUTES
2371
+ n
2372
+ x
2373
+ 6
2374
+ equal?
2375
+ n
2376
+ x
2377
+ 4
2378
+ Hash
2379
+ x
2380
+ 16
2381
+ new_from_literal
2382
+ M
2383
+ 1
2384
+ p
2385
+ 2
2386
+ x
2387
+ 9
2388
+ for_block
2389
+ t
2390
+ n
2391
+ x
2392
+ 37
2393
+ inherited_with_inheritable_attributes
2394
+ i
2395
+ 53
2396
+ 58
2397
+ 37
2398
+ 19
2399
+ 0
2400
+ 15
2401
+ 37
2402
+ 36
2403
+ 37
2404
+ 19
2405
+ 1
2406
+ 15
2407
+ 37
2408
+ 19
2409
+ 2
2410
+ 15
2411
+ 15
2412
+ 15
2413
+ 20
2414
+ 0
2415
+ 44
2416
+ 43
2417
+ 0
2418
+ 79
2419
+ 49
2420
+ 1
2421
+ 1
2422
+ 13
2423
+ 20
2424
+ 1
2425
+ 20
2426
+ 2
2427
+ 49
2428
+ 2
2429
+ 0
2430
+ 9
2431
+ 43
2432
+ 20
2433
+ 2
2434
+ 49
2435
+ 3
2436
+ 0
2437
+ 8
2438
+ 45
2439
+ 20
2440
+ 2
2441
+ 49
2442
+ 4
2443
+ 2
2444
+ 15
2445
+ 49
2446
+ 5
2447
+ 1
2448
+ 11
2449
+ I
2450
+ 9
2451
+ I
2452
+ 3
2453
+ I
2454
+ 2
2455
+ I
2456
+ 2
2457
+ n
2458
+ p
2459
+ 6
2460
+ x
2461
+ 4
2462
+ Hash
2463
+ x
2464
+ 16
2465
+ new_from_literal
2466
+ x
2467
+ 11
2468
+ duplicable?
2469
+ x
2470
+ 3
2471
+ dup
2472
+ x
2473
+ 3
2474
+ []=
2475
+ x
2476
+ 6
2477
+ update
2478
+ p
2479
+ 5
2480
+ I
2481
+ 0
2482
+ I
2483
+ a1
2484
+ I
2485
+ 11
2486
+ I
2487
+ a2
2488
+ I
2489
+ 35
2490
+ x
2491
+ 110
2492
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
2493
+ p
2494
+ 3
2495
+ x
2496
+ 4
2497
+ memo
2498
+ x
2499
+ 3
2500
+ key
2501
+ x
2502
+ 5
2503
+ value
2504
+ x
2505
+ 6
2506
+ inject
2507
+ s
2508
+ 23
2509
+ @inheritable_attributes
2510
+ x
2511
+ 21
2512
+ instance_variable_set
2513
+ p
2514
+ 13
2515
+ I
2516
+ -1
2517
+ I
2518
+ 9b
2519
+ I
2520
+ 0
2521
+ I
2522
+ 9c
2523
+ I
2524
+ 14
2525
+ I
2526
+ 9e
2527
+ I
2528
+ 1f
2529
+ I
2530
+ 9f
2531
+ I
2532
+ 26
2533
+ I
2534
+ a1
2535
+ I
2536
+ 38
2537
+ I
2538
+ a6
2539
+ I
2540
+ 43
2541
+ x
2542
+ 110
2543
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
2544
+ p
2545
+ 2
2546
+ x
2547
+ 5
2548
+ child
2549
+ x
2550
+ 26
2551
+ new_inheritable_attributes
2552
+ x
2553
+ 40
2554
+ inherited_without_inheritable_attributes
2555
+ x
2556
+ 9
2557
+ inherited
2558
+ x
2559
+ 12
2560
+ alias_method
2561
+ p
2562
+ 37
2563
+ I
2564
+ 2
2565
+ I
2566
+ 26
2567
+ I
2568
+ 10
2569
+ I
2570
+ 38
2571
+ I
2572
+ 1e
2573
+ I
2574
+ 49
2575
+ I
2576
+ 2c
2577
+ I
2578
+ 5a
2579
+ I
2580
+ 3a
2581
+ I
2582
+ 6b
2583
+ I
2584
+ 48
2585
+ I
2586
+ 70
2587
+ I
2588
+ 56
2589
+ I
2590
+ 75
2591
+ I
2592
+ 64
2593
+ I
2594
+ 7a
2595
+ I
2596
+ 72
2597
+ I
2598
+ 7e
2599
+ I
2600
+ 80
2601
+ I
2602
+ 85
2603
+ I
2604
+ 8e
2605
+ I
2606
+ 8a
2607
+ I
2608
+ 9c
2609
+ I
2610
+ 8f
2611
+ I
2612
+ aa
2613
+ I
2614
+ 93
2615
+ I
2616
+ b8
2617
+ I
2618
+ 97
2619
+ I
2620
+ bc
2621
+ I
2622
+ 99
2623
+ I
2624
+ cd
2625
+ I
2626
+ 9b
2627
+ I
2628
+ db
2629
+ I
2630
+ a9
2631
+ I
2632
+ e5
2633
+ I
2634
+ aa
2635
+ I
2636
+ ef
2637
+ x
2638
+ 110
2639
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
2640
+ p
2641
+ 0
2642
+ x
2643
+ 13
2644
+ attach_method
2645
+ M
2646
+ 1
2647
+ n
2648
+ n
2649
+ x
2650
+ 5
2651
+ Class
2652
+ i
2653
+ 44
2654
+ 5
2655
+ 66
2656
+ 99
2657
+ 7
2658
+ 0
2659
+ 7
2660
+ 1
2661
+ 65
2662
+ 67
2663
+ 49
2664
+ 2
2665
+ 0
2666
+ 49
2667
+ 3
2668
+ 4
2669
+ 15
2670
+ 99
2671
+ 7
2672
+ 4
2673
+ 7
2674
+ 5
2675
+ 65
2676
+ 67
2677
+ 49
2678
+ 2
2679
+ 0
2680
+ 49
2681
+ 3
2682
+ 4
2683
+ 15
2684
+ 99
2685
+ 7
2686
+ 6
2687
+ 7
2688
+ 7
2689
+ 65
2690
+ 67
2691
+ 49
2692
+ 2
2693
+ 0
2694
+ 49
2695
+ 3
2696
+ 4
2697
+ 11
2698
+ I
2699
+ 5
2700
+ I
2701
+ 0
2702
+ I
2703
+ 0
2704
+ I
2705
+ 0
2706
+ n
2707
+ p
2708
+ 8
2709
+ x
2710
+ 25
2711
+ extlib_inheritable_reader
2712
+ M
2713
+ 1
2714
+ n
2715
+ n
2716
+ x
2717
+ 25
2718
+ extlib_inheritable_reader
2719
+ i
2720
+ 20
2721
+ 95
2722
+ 19
2723
+ 1
2724
+ 15
2725
+ 20
2726
+ 0
2727
+ 49
2728
+ 0
2729
+ 0
2730
+ 19
2731
+ 2
2732
+ 15
2733
+ 20
2734
+ 0
2735
+ 56
2736
+ 1
2737
+ 50
2738
+ 2
2739
+ 0
2740
+ 11
2741
+ I
2742
+ 5
2743
+ I
2744
+ 3
2745
+ I
2746
+ 0
2747
+ I
2748
+ 0
2749
+ I
2750
+ 0
2751
+ p
2752
+ 3
2753
+ x
2754
+ 16
2755
+ extract_options!
2756
+ M
2757
+ 1
2758
+ p
2759
+ 2
2760
+ x
2761
+ 9
2762
+ for_block
2763
+ t
2764
+ n
2765
+ x
2766
+ 25
2767
+ extlib_inheritable_reader
2768
+ i
2769
+ 154
2770
+ 57
2771
+ 19
2772
+ 0
2773
+ 15
2774
+ 5
2775
+ 7
2776
+ 0
2777
+ 20
2778
+ 0
2779
+ 47
2780
+ 101
2781
+ 1
2782
+ 7
2783
+ 2
2784
+ 20
2785
+ 0
2786
+ 47
2787
+ 101
2788
+ 1
2789
+ 7
2790
+ 3
2791
+ 5
2792
+ 49
2793
+ 4
2794
+ 0
2795
+ 47
2796
+ 101
2797
+ 1
2798
+ 7
2799
+ 5
2800
+ 20
2801
+ 0
2802
+ 47
2803
+ 101
2804
+ 1
2805
+ 7
2806
+ 6
2807
+ 20
2808
+ 0
2809
+ 47
2810
+ 101
2811
+ 1
2812
+ 7
2813
+ 7
2814
+ 5
2815
+ 47
2816
+ 101
2817
+ 1
2818
+ 7
2819
+ 8
2820
+ 20
2821
+ 0
2822
+ 47
2823
+ 101
2824
+ 1
2825
+ 7
2826
+ 9
2827
+ 20
2828
+ 0
2829
+ 47
2830
+ 101
2831
+ 1
2832
+ 7
2833
+ 10
2834
+ 63
2835
+ 17
2836
+ 65
2837
+ 49
2838
+ 11
2839
+ 0
2840
+ 4
2841
+ 191
2842
+ 79
2843
+ 81
2844
+ 12
2845
+ 49
2846
+ 13
2847
+ 3
2848
+ 15
2849
+ 21
2850
+ 1
2851
+ 2
2852
+ 7
2853
+ 14
2854
+ 49
2855
+ 15
2856
+ 1
2857
+ 3
2858
+ 83
2859
+ 16
2860
+ 9
2861
+ 95
2862
+ 1
2863
+ 8
2864
+ 126
2865
+ 5
2866
+ 7
2867
+ 17
2868
+ 20
2869
+ 0
2870
+ 47
2871
+ 101
2872
+ 1
2873
+ 7
2874
+ 18
2875
+ 20
2876
+ 0
2877
+ 47
2878
+ 101
2879
+ 1
2880
+ 7
2881
+ 19
2882
+ 63
2883
+ 5
2884
+ 65
2885
+ 49
2886
+ 11
2887
+ 0
2888
+ 4
2889
+ 200
2890
+ 79
2891
+ 81
2892
+ 12
2893
+ 49
2894
+ 13
2895
+ 3
2896
+ 15
2897
+ 94
2898
+ 9
2899
+ 152
2900
+ 5
2901
+ 7
2902
+ 20
2903
+ 20
2904
+ 0
2905
+ 47
2906
+ 101
2907
+ 1
2908
+ 63
2909
+ 2
2910
+ 47
2911
+ 49
2912
+ 21
2913
+ 0
2914
+ 60
2915
+ 0
2916
+ 47
2917
+ 49
2918
+ 22
2919
+ 2
2920
+ 8
2921
+ 153
2922
+ 1
2923
+ 11
2924
+ I
2925
+ 14
2926
+ I
2927
+ 1
2928
+ I
2929
+ 1
2930
+ I
2931
+ 1
2932
+ n
2933
+ p
2934
+ 23
2935
+ s
2936
+ 17
2937
+ def self.
2938
+ x
2939
+ 4
2940
+ to_s
2941
+ s
2942
+ 19
2943
+
2944
+ return @
2945
+ s
2946
+ 22
2947
+ if self.object_id ==
2948
+ x
2949
+ 9
2950
+ object_id
2951
+ s
2952
+ 14
2953
+ || defined?(@
2954
+ s
2955
+ 30
2956
+ )
2957
+ ivar = superclass.
2958
+ s
2959
+ 39
2960
+
2961
+ return nil if ivar.nil? && !
2962
+ s
2963
+ 30
2964
+ .instance_variable_defined?("@
2965
+ s
2966
+ 14
2967
+ ")
2968
+ @
2969
+ s
2970
+ 50
2971
+ = ivar.duplicable? ? ivar.dup : ivar
2972
+ end
2973
+
2974
+ x
2975
+ 11
2976
+ active_path
2977
+ x
2978
+ 1
2979
+ +
2980
+ x
2981
+ 10
2982
+ class_eval
2983
+ x
2984
+ 15
2985
+ instance_reader
2986
+ x
2987
+ 2
2988
+ []
2989
+ x
2990
+ 2
2991
+ ==
2992
+ s
2993
+ 14
2994
+ def
2995
+ s
2996
+ 24
2997
+
2998
+ self.class.
2999
+ s
3000
+ 15
3001
+
3002
+ end
3003
+
3004
+ s
3005
+ 1
3006
+ @
3007
+ x
3008
+ 6
3009
+ to_sym
3010
+ x
3011
+ 21
3012
+ instance_variable_set
3013
+ p
3014
+ 29
3015
+ I
3016
+ 0
3017
+ I
3018
+ be
3019
+ I
3020
+ 4
3021
+ I
3022
+ bf
3023
+ I
3024
+ 5
3025
+ I
3026
+ c0
3027
+ I
3028
+ e
3029
+ I
3030
+ c1
3031
+ I
3032
+ 25
3033
+ I
3034
+ c2
3035
+ I
3036
+ 2c
3037
+ I
3038
+ c3
3039
+ I
3040
+ 39
3041
+ I
3042
+ c4
3043
+ I
3044
+ 42
3045
+ I
3046
+ bf
3047
+ I
3048
+ 4f
3049
+ I
3050
+ c7
3051
+ I
3052
+ 5f
3053
+ I
3054
+ c8
3055
+ I
3056
+ 60
3057
+ I
3058
+ c9
3059
+ I
3060
+ 69
3061
+ I
3062
+ ca
3063
+ I
3064
+ 72
3065
+ I
3066
+ c8
3067
+ I
3068
+ 7f
3069
+ I
3070
+ ce
3071
+ I
3072
+ 9a
3073
+ x
3074
+ 110
3075
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
3076
+ p
3077
+ 1
3078
+ x
3079
+ 4
3080
+ ivar
3081
+ x
3082
+ 4
3083
+ each
3084
+ p
3085
+ 7
3086
+ I
3087
+ -1
3088
+ I
3089
+ bb
3090
+ I
3091
+ 4
3092
+ I
3093
+ bc
3094
+ I
3095
+ c
3096
+ I
3097
+ be
3098
+ I
3099
+ 14
3100
+ x
3101
+ 110
3102
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
3103
+ p
3104
+ 3
3105
+ x
3106
+ 5
3107
+ ivars
3108
+ x
3109
+ 5
3110
+ block
3111
+ x
3112
+ 7
3113
+ options
3114
+ x
3115
+ 17
3116
+ method_visibility
3117
+ x
3118
+ 15
3119
+ add_defn_method
3120
+ x
3121
+ 25
3122
+ extlib_inheritable_writer
3123
+ M
3124
+ 1
3125
+ n
3126
+ n
3127
+ x
3128
+ 25
3129
+ extlib_inheritable_writer
3130
+ i
3131
+ 16
3132
+ 20
3133
+ 0
3134
+ 49
3135
+ 0
3136
+ 0
3137
+ 19
3138
+ 1
3139
+ 15
3140
+ 20
3141
+ 0
3142
+ 56
3143
+ 1
3144
+ 50
3145
+ 2
3146
+ 0
3147
+ 11
3148
+ I
3149
+ 4
3150
+ I
3151
+ 2
3152
+ I
3153
+ 0
3154
+ I
3155
+ 0
3156
+ I
3157
+ 0
3158
+ p
3159
+ 3
3160
+ x
3161
+ 16
3162
+ extract_options!
3163
+ M
3164
+ 1
3165
+ p
3166
+ 2
3167
+ x
3168
+ 9
3169
+ for_block
3170
+ t
3171
+ n
3172
+ x
3173
+ 25
3174
+ extlib_inheritable_writer
3175
+ i
3176
+ 106
3177
+ 57
3178
+ 19
3179
+ 0
3180
+ 15
3181
+ 5
3182
+ 7
3183
+ 0
3184
+ 20
3185
+ 0
3186
+ 47
3187
+ 101
3188
+ 1
3189
+ 7
3190
+ 2
3191
+ 20
3192
+ 0
3193
+ 47
3194
+ 101
3195
+ 1
3196
+ 7
3197
+ 3
3198
+ 63
3199
+ 5
3200
+ 65
3201
+ 49
3202
+ 4
3203
+ 0
3204
+ 4
3205
+ 226
3206
+ 79
3207
+ 81
3208
+ 5
3209
+ 49
3210
+ 6
3211
+ 3
3212
+ 15
3213
+ 21
3214
+ 1
3215
+ 1
3216
+ 7
3217
+ 7
3218
+ 49
3219
+ 8
3220
+ 1
3221
+ 3
3222
+ 83
3223
+ 9
3224
+ 9
3225
+ 52
3226
+ 1
3227
+ 8
3228
+ 83
3229
+ 5
3230
+ 7
3231
+ 10
3232
+ 20
3233
+ 0
3234
+ 47
3235
+ 101
3236
+ 1
3237
+ 7
3238
+ 11
3239
+ 20
3240
+ 0
3241
+ 47
3242
+ 101
3243
+ 1
3244
+ 7
3245
+ 12
3246
+ 63
3247
+ 5
3248
+ 65
3249
+ 49
3250
+ 4
3251
+ 0
3252
+ 4
3253
+ 232
3254
+ 79
3255
+ 81
3256
+ 5
3257
+ 49
3258
+ 6
3259
+ 3
3260
+ 15
3261
+ 94
3262
+ 9
3263
+ 104
3264
+ 5
3265
+ 20
3266
+ 0
3267
+ 47
3268
+ 101
3269
+ 1
3270
+ 7
3271
+ 13
3272
+ 63
3273
+ 2
3274
+ 60
3275
+ 0
3276
+ 49
3277
+ 14
3278
+ 2
3279
+ 8
3280
+ 105
3281
+ 1
3282
+ 11
3283
+ I
3284
+ 8
3285
+ I
3286
+ 1
3287
+ I
3288
+ 1
3289
+ I
3290
+ 1
3291
+ n
3292
+ p
3293
+ 15
3294
+ s
3295
+ 17
3296
+ def self.
3297
+ x
3298
+ 4
3299
+ to_s
3300
+ s
3301
+ 18
3302
+ =(obj)
3303
+ @
3304
+ s
3305
+ 19
3306
+ = obj
3307
+ end
3308
+
3309
+ x
3310
+ 11
3311
+ active_path
3312
+ x
3313
+ 1
3314
+ +
3315
+ x
3316
+ 10
3317
+ class_eval
3318
+ x
3319
+ 15
3320
+ instance_writer
3321
+ x
3322
+ 2
3323
+ []
3324
+ x
3325
+ 2
3326
+ ==
3327
+ s
3328
+ 14
3329
+ def
3330
+ s
3331
+ 18
3332
+ =(obj) self.class.
3333
+ s
3334
+ 11
3335
+ = obj end
3336
+
3337
+ s
3338
+ 1
3339
+ =
3340
+ x
3341
+ 4
3342
+ send
3343
+ p
3344
+ 21
3345
+ I
3346
+ 0
3347
+ I
3348
+ e1
3349
+ I
3350
+ 4
3351
+ I
3352
+ e2
3353
+ I
3354
+ 5
3355
+ I
3356
+ e3
3357
+ I
3358
+ e
3359
+ I
3360
+ e4
3361
+ I
3362
+ 17
3363
+ I
3364
+ e2
3365
+ I
3366
+ 24
3367
+ I
3368
+ e7
3369
+ I
3370
+ 34
3371
+ I
3372
+ e8
3373
+ I
3374
+ 35
3375
+ I
3376
+ e9
3377
+ I
3378
+ 47
3379
+ I
3380
+ e8
3381
+ I
3382
+ 54
3383
+ I
3384
+ ed
3385
+ I
3386
+ 6a
3387
+ x
3388
+ 110
3389
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
3390
+ p
3391
+ 1
3392
+ x
3393
+ 4
3394
+ ivar
3395
+ x
3396
+ 4
3397
+ each
3398
+ p
3399
+ 7
3400
+ I
3401
+ -1
3402
+ I
3403
+ de
3404
+ I
3405
+ 0
3406
+ I
3407
+ df
3408
+ I
3409
+ 8
3410
+ I
3411
+ e1
3412
+ I
3413
+ 10
3414
+ x
3415
+ 110
3416
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
3417
+ p
3418
+ 2
3419
+ x
3420
+ 5
3421
+ ivars
3422
+ x
3423
+ 7
3424
+ options
3425
+ x
3426
+ 27
3427
+ extlib_inheritable_accessor
3428
+ M
3429
+ 1
3430
+ n
3431
+ n
3432
+ x
3433
+ 27
3434
+ extlib_inheritable_accessor
3435
+ i
3436
+ 36
3437
+ 95
3438
+ 19
3439
+ 1
3440
+ 15
3441
+ 5
3442
+ 20
3443
+ 0
3444
+ 36
3445
+ 1
3446
+ 47
3447
+ 51
3448
+ 0
3449
+ 0
3450
+ 15
3451
+ 5
3452
+ 20
3453
+ 0
3454
+ 36
3455
+ 20
3456
+ 1
3457
+ 13
3458
+ 70
3459
+ 10
3460
+ 31
3461
+ 44
3462
+ 43
3463
+ 1
3464
+ 12
3465
+ 49
3466
+ 2
3467
+ 1
3468
+ 47
3469
+ 51
3470
+ 3
3471
+ 0
3472
+ 11
3473
+ I
3474
+ 6
3475
+ I
3476
+ 2
3477
+ I
3478
+ 0
3479
+ I
3480
+ 0
3481
+ I
3482
+ 0
3483
+ p
3484
+ 4
3485
+ x
3486
+ 25
3487
+ extlib_inheritable_reader
3488
+ x
3489
+ 4
3490
+ Proc
3491
+ x
3492
+ 14
3493
+ __from_block__
3494
+ x
3495
+ 25
3496
+ extlib_inheritable_writer
3497
+ p
3498
+ 7
3499
+ I
3500
+ -1
3501
+ I
3502
+ fa
3503
+ I
3504
+ 4
3505
+ I
3506
+ fb
3507
+ I
3508
+ e
3509
+ I
3510
+ fc
3511
+ I
3512
+ 24
3513
+ x
3514
+ 110
3515
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
3516
+ p
3517
+ 2
3518
+ x
3519
+ 4
3520
+ syms
3521
+ x
3522
+ 5
3523
+ block
3524
+ p
3525
+ 7
3526
+ I
3527
+ 2
3528
+ I
3529
+ bb
3530
+ I
3531
+ 10
3532
+ I
3533
+ de
3534
+ I
3535
+ 1e
3536
+ I
3537
+ fa
3538
+ I
3539
+ 2c
3540
+ x
3541
+ 110
3542
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
3543
+ p
3544
+ 0
3545
+ p
3546
+ 11
3547
+ I
3548
+ 0
3549
+ I
3550
+ 1
3551
+ I
3552
+ 9
3553
+ I
3554
+ 2
3555
+ I
3556
+ 12
3557
+ I
3558
+ 5
3559
+ I
3560
+ 1c
3561
+ I
3562
+ 25
3563
+ I
3564
+ 37
3565
+ I
3566
+ ad
3567
+ I
3568
+ 54
3569
+ x
3570
+ 110
3571
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/inheritable_attributes.rb
3572
+ p
3573
+ 0