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,392 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 13
54
+ ActiveSupport
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 13
67
+ ActiveSupport
68
+ i
69
+ 28
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 65
76
+ 49
77
+ 1
78
+ 2
79
+ 13
80
+ 99
81
+ 12
82
+ 7
83
+ 2
84
+ 12
85
+ 7
86
+ 3
87
+ 12
88
+ 65
89
+ 12
90
+ 49
91
+ 4
92
+ 4
93
+ 15
94
+ 49
95
+ 2
96
+ 0
97
+ 11
98
+ I
99
+ 6
100
+ I
101
+ 0
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ n
107
+ p
108
+ 5
109
+ x
110
+ 4
111
+ JSON
112
+ x
113
+ 11
114
+ open_module
115
+ x
116
+ 15
117
+ __module_init__
118
+ M
119
+ 1
120
+ n
121
+ n
122
+ x
123
+ 4
124
+ JSON
125
+ i
126
+ 31
127
+ 5
128
+ 66
129
+ 99
130
+ 7
131
+ 0
132
+ 45
133
+ 1
134
+ 2
135
+ 65
136
+ 49
137
+ 3
138
+ 3
139
+ 13
140
+ 99
141
+ 12
142
+ 7
143
+ 4
144
+ 12
145
+ 7
146
+ 5
147
+ 12
148
+ 65
149
+ 12
150
+ 49
151
+ 6
152
+ 4
153
+ 15
154
+ 49
155
+ 4
156
+ 0
157
+ 11
158
+ I
159
+ 6
160
+ I
161
+ 0
162
+ I
163
+ 0
164
+ I
165
+ 0
166
+ n
167
+ p
168
+ 7
169
+ x
170
+ 8
171
+ Variable
172
+ x
173
+ 6
174
+ String
175
+ n
176
+ x
177
+ 10
178
+ open_class
179
+ x
180
+ 14
181
+ __class_init__
182
+ M
183
+ 1
184
+ n
185
+ n
186
+ x
187
+ 8
188
+ Variable
189
+ i
190
+ 30
191
+ 5
192
+ 66
193
+ 99
194
+ 7
195
+ 0
196
+ 7
197
+ 1
198
+ 65
199
+ 67
200
+ 49
201
+ 2
202
+ 0
203
+ 49
204
+ 3
205
+ 4
206
+ 15
207
+ 99
208
+ 7
209
+ 4
210
+ 7
211
+ 5
212
+ 65
213
+ 67
214
+ 49
215
+ 2
216
+ 0
217
+ 49
218
+ 3
219
+ 4
220
+ 11
221
+ I
222
+ 5
223
+ I
224
+ 0
225
+ I
226
+ 0
227
+ I
228
+ 0
229
+ n
230
+ p
231
+ 6
232
+ x
233
+ 7
234
+ as_json
235
+ M
236
+ 1
237
+ n
238
+ n
239
+ x
240
+ 7
241
+ as_json
242
+ i
243
+ 10
244
+ 23
245
+ 0
246
+ 10
247
+ 8
248
+ 1
249
+ 19
250
+ 0
251
+ 15
252
+ 5
253
+ 11
254
+ I
255
+ 2
256
+ I
257
+ 1
258
+ I
259
+ 0
260
+ I
261
+ 1
262
+ n
263
+ p
264
+ 0
265
+ p
266
+ 3
267
+ I
268
+ -1
269
+ I
270
+ 5
271
+ I
272
+ a
273
+ x
274
+ 86
275
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/json/variable.rb
276
+ p
277
+ 1
278
+ x
279
+ 7
280
+ options
281
+ x
282
+ 17
283
+ method_visibility
284
+ x
285
+ 15
286
+ add_defn_method
287
+ x
288
+ 11
289
+ encode_json
290
+ M
291
+ 1
292
+ n
293
+ n
294
+ x
295
+ 11
296
+ encode_json
297
+ i
298
+ 2
299
+ 5
300
+ 11
301
+ I
302
+ 2
303
+ I
304
+ 1
305
+ I
306
+ 1
307
+ I
308
+ 1
309
+ n
310
+ p
311
+ 0
312
+ p
313
+ 3
314
+ I
315
+ -1
316
+ I
317
+ 6
318
+ I
319
+ 2
320
+ x
321
+ 86
322
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/json/variable.rb
323
+ p
324
+ 1
325
+ x
326
+ 7
327
+ encoder
328
+ p
329
+ 5
330
+ I
331
+ 2
332
+ I
333
+ 5
334
+ I
335
+ 10
336
+ I
337
+ 6
338
+ I
339
+ 1e
340
+ x
341
+ 86
342
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/json/variable.rb
343
+ p
344
+ 0
345
+ x
346
+ 13
347
+ attach_method
348
+ p
349
+ 3
350
+ I
351
+ 2
352
+ I
353
+ 4
354
+ I
355
+ 1f
356
+ x
357
+ 86
358
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/json/variable.rb
359
+ p
360
+ 0
361
+ x
362
+ 13
363
+ attach_method
364
+ p
365
+ 3
366
+ I
367
+ 2
368
+ I
369
+ 2
370
+ I
371
+ 1c
372
+ x
373
+ 86
374
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/json/variable.rb
375
+ p
376
+ 0
377
+ x
378
+ 13
379
+ attach_method
380
+ p
381
+ 3
382
+ I
383
+ 0
384
+ I
385
+ 1
386
+ I
387
+ 1c
388
+ x
389
+ 86
390
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/json/variable.rb
391
+ p
392
+ 0
@@ -0,0 +1,703 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 13
54
+ ActiveSupport
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 13
67
+ ActiveSupport
68
+ i
69
+ 56
70
+ 5
71
+ 66
72
+ 45
73
+ 0
74
+ 1
75
+ 56
76
+ 2
77
+ 50
78
+ 3
79
+ 0
80
+ 38
81
+ 4
82
+ 15
83
+ 44
84
+ 43
85
+ 0
86
+ 78
87
+ 49
88
+ 5
89
+ 1
90
+ 38
91
+ 6
92
+ 15
93
+ 99
94
+ 7
95
+ 7
96
+ 7
97
+ 8
98
+ 65
99
+ 5
100
+ 49
101
+ 9
102
+ 4
103
+ 15
104
+ 99
105
+ 7
106
+ 10
107
+ 7
108
+ 11
109
+ 65
110
+ 5
111
+ 49
112
+ 9
113
+ 4
114
+ 15
115
+ 99
116
+ 7
117
+ 12
118
+ 7
119
+ 13
120
+ 65
121
+ 5
122
+ 49
123
+ 9
124
+ 4
125
+ 11
126
+ I
127
+ 5
128
+ I
129
+ 0
130
+ I
131
+ 0
132
+ I
133
+ 0
134
+ n
135
+ p
136
+ 14
137
+ x
138
+ 4
139
+ Hash
140
+ n
141
+ M
142
+ 1
143
+ p
144
+ 2
145
+ x
146
+ 9
147
+ for_block
148
+ t
149
+ n
150
+ x
151
+ 13
152
+ ActiveSupport
153
+ i
154
+ 24
155
+ 58
156
+ 37
157
+ 19
158
+ 0
159
+ 15
160
+ 37
161
+ 19
162
+ 1
163
+ 15
164
+ 15
165
+ 20
166
+ 0
167
+ 20
168
+ 1
169
+ 35
170
+ 0
171
+ 13
172
+ 18
173
+ 3
174
+ 49
175
+ 0
176
+ 2
177
+ 15
178
+ 11
179
+ I
180
+ 7
181
+ I
182
+ 2
183
+ I
184
+ 2
185
+ I
186
+ 2
187
+ n
188
+ p
189
+ 1
190
+ x
191
+ 3
192
+ []=
193
+ p
194
+ 3
195
+ I
196
+ 0
197
+ I
198
+ 15
199
+ I
200
+ 18
201
+ x
202
+ 88
203
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/lazy_load_hooks.rb
204
+ p
205
+ 2
206
+ x
207
+ 1
208
+ h
209
+ x
210
+ 1
211
+ k
212
+ x
213
+ 3
214
+ new
215
+ x
216
+ 11
217
+ @load_hooks
218
+ x
219
+ 16
220
+ new_from_literal
221
+ x
222
+ 7
223
+ @loaded
224
+ x
225
+ 7
226
+ on_load
227
+ M
228
+ 1
229
+ n
230
+ n
231
+ x
232
+ 7
233
+ on_load
234
+ i
235
+ 59
236
+ 23
237
+ 1
238
+ 10
239
+ 14
240
+ 44
241
+ 43
242
+ 0
243
+ 78
244
+ 49
245
+ 1
246
+ 1
247
+ 19
248
+ 1
249
+ 15
250
+ 95
251
+ 19
252
+ 2
253
+ 15
254
+ 39
255
+ 2
256
+ 20
257
+ 0
258
+ 49
259
+ 3
260
+ 1
261
+ 19
262
+ 3
263
+ 9
264
+ 42
265
+ 5
266
+ 20
267
+ 3
268
+ 20
269
+ 1
270
+ 20
271
+ 2
272
+ 47
273
+ 49
274
+ 4
275
+ 3
276
+ 8
277
+ 58
278
+ 39
279
+ 5
280
+ 20
281
+ 0
282
+ 49
283
+ 3
284
+ 1
285
+ 20
286
+ 2
287
+ 20
288
+ 1
289
+ 35
290
+ 2
291
+ 49
292
+ 6
293
+ 1
294
+ 11
295
+ I
296
+ 8
297
+ I
298
+ 4
299
+ I
300
+ 1
301
+ I
302
+ 2
303
+ n
304
+ p
305
+ 7
306
+ x
307
+ 4
308
+ Hash
309
+ x
310
+ 16
311
+ new_from_literal
312
+ x
313
+ 7
314
+ @loaded
315
+ x
316
+ 2
317
+ []
318
+ x
319
+ 12
320
+ execute_hook
321
+ x
322
+ 11
323
+ @load_hooks
324
+ x
325
+ 2
326
+ <<
327
+ p
328
+ 9
329
+ I
330
+ -1
331
+ I
332
+ 18
333
+ I
334
+ 12
335
+ I
336
+ 19
337
+ I
338
+ 1d
339
+ I
340
+ 1a
341
+ I
342
+ 2a
343
+ I
344
+ 1c
345
+ I
346
+ 3b
347
+ x
348
+ 88
349
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/lazy_load_hooks.rb
350
+ p
351
+ 4
352
+ x
353
+ 4
354
+ name
355
+ x
356
+ 7
357
+ options
358
+ x
359
+ 5
360
+ block
361
+ x
362
+ 4
363
+ base
364
+ x
365
+ 13
366
+ attach_method
367
+ x
368
+ 12
369
+ execute_hook
370
+ M
371
+ 1
372
+ n
373
+ n
374
+ x
375
+ 12
376
+ execute_hook
377
+ i
378
+ 37
379
+ 20
380
+ 1
381
+ 7
382
+ 0
383
+ 49
384
+ 1
385
+ 1
386
+ 9
387
+ 18
388
+ 20
389
+ 2
390
+ 20
391
+ 0
392
+ 49
393
+ 2
394
+ 1
395
+ 8
396
+ 36
397
+ 20
398
+ 0
399
+ 20
400
+ 2
401
+ 13
402
+ 70
403
+ 10
404
+ 33
405
+ 44
406
+ 43
407
+ 3
408
+ 12
409
+ 49
410
+ 4
411
+ 1
412
+ 50
413
+ 5
414
+ 0
415
+ 11
416
+ I
417
+ 6
418
+ I
419
+ 3
420
+ I
421
+ 3
422
+ I
423
+ 3
424
+ n
425
+ p
426
+ 6
427
+ x
428
+ 5
429
+ yield
430
+ x
431
+ 2
432
+ []
433
+ x
434
+ 4
435
+ call
436
+ x
437
+ 4
438
+ Proc
439
+ x
440
+ 14
441
+ __from_block__
442
+ x
443
+ 13
444
+ instance_eval
445
+ p
446
+ 9
447
+ I
448
+ -1
449
+ I
450
+ 20
451
+ I
452
+ 0
453
+ I
454
+ 21
455
+ I
456
+ 9
457
+ I
458
+ 22
459
+ I
460
+ 12
461
+ I
462
+ 24
463
+ I
464
+ 25
465
+ x
466
+ 88
467
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/lazy_load_hooks.rb
468
+ p
469
+ 3
470
+ x
471
+ 4
472
+ base
473
+ x
474
+ 7
475
+ options
476
+ x
477
+ 5
478
+ block
479
+ x
480
+ 14
481
+ run_load_hooks
482
+ M
483
+ 1
484
+ n
485
+ n
486
+ x
487
+ 14
488
+ run_load_hooks
489
+ i
490
+ 37
491
+ 23
492
+ 1
493
+ 10
494
+ 10
495
+ 45
496
+ 0
497
+ 1
498
+ 19
499
+ 1
500
+ 15
501
+ 39
502
+ 2
503
+ 20
504
+ 0
505
+ 20
506
+ 1
507
+ 13
508
+ 18
509
+ 3
510
+ 49
511
+ 3
512
+ 2
513
+ 15
514
+ 15
515
+ 39
516
+ 4
517
+ 20
518
+ 0
519
+ 49
520
+ 5
521
+ 1
522
+ 56
523
+ 6
524
+ 50
525
+ 7
526
+ 0
527
+ 11
528
+ I
529
+ 6
530
+ I
531
+ 2
532
+ I
533
+ 1
534
+ I
535
+ 2
536
+ n
537
+ p
538
+ 8
539
+ x
540
+ 6
541
+ Object
542
+ n
543
+ x
544
+ 7
545
+ @loaded
546
+ x
547
+ 3
548
+ []=
549
+ x
550
+ 11
551
+ @load_hooks
552
+ x
553
+ 2
554
+ []
555
+ M
556
+ 1
557
+ p
558
+ 2
559
+ x
560
+ 9
561
+ for_block
562
+ t
563
+ n
564
+ x
565
+ 14
566
+ run_load_hooks
567
+ i
568
+ 23
569
+ 58
570
+ 37
571
+ 19
572
+ 0
573
+ 15
574
+ 37
575
+ 19
576
+ 1
577
+ 15
578
+ 15
579
+ 5
580
+ 21
581
+ 1
582
+ 1
583
+ 20
584
+ 1
585
+ 20
586
+ 0
587
+ 47
588
+ 49
589
+ 0
590
+ 3
591
+ 11
592
+ I
593
+ 7
594
+ I
595
+ 2
596
+ I
597
+ 2
598
+ I
599
+ 2
600
+ n
601
+ p
602
+ 1
603
+ x
604
+ 12
605
+ execute_hook
606
+ p
607
+ 5
608
+ I
609
+ 0
610
+ I
611
+ 2a
612
+ I
613
+ a
614
+ I
615
+ 2b
616
+ I
617
+ 17
618
+ x
619
+ 88
620
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/lazy_load_hooks.rb
621
+ p
622
+ 2
623
+ x
624
+ 4
625
+ hook
626
+ x
627
+ 7
628
+ options
629
+ x
630
+ 4
631
+ each
632
+ p
633
+ 7
634
+ I
635
+ -1
636
+ I
637
+ 28
638
+ I
639
+ a
640
+ I
641
+ 29
642
+ I
643
+ 18
644
+ I
645
+ 2a
646
+ I
647
+ 25
648
+ x
649
+ 88
650
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/lazy_load_hooks.rb
651
+ p
652
+ 2
653
+ x
654
+ 4
655
+ name
656
+ x
657
+ 4
658
+ base
659
+ p
660
+ 11
661
+ I
662
+ 2
663
+ I
664
+ 15
665
+ I
666
+ d
667
+ I
668
+ 16
669
+ I
670
+ 17
671
+ I
672
+ 18
673
+ I
674
+ 22
675
+ I
676
+ 20
677
+ I
678
+ 2d
679
+ I
680
+ 28
681
+ I
682
+ 38
683
+ x
684
+ 88
685
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/lazy_load_hooks.rb
686
+ p
687
+ 0
688
+ x
689
+ 13
690
+ attach_method
691
+ p
692
+ 3
693
+ I
694
+ 0
695
+ I
696
+ 14
697
+ I
698
+ 1c
699
+ x
700
+ 88
701
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/lazy_load_hooks.rb
702
+ p
703
+ 0