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,387 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 29
13
+ 99
14
+ 7
15
+ 0
16
+ 1
17
+ 65
18
+ 49
19
+ 1
20
+ 3
21
+ 13
22
+ 99
23
+ 12
24
+ 7
25
+ 2
26
+ 12
27
+ 7
28
+ 3
29
+ 12
30
+ 65
31
+ 12
32
+ 49
33
+ 4
34
+ 4
35
+ 15
36
+ 49
37
+ 2
38
+ 0
39
+ 15
40
+ 2
41
+ 11
42
+ I
43
+ 6
44
+ I
45
+ 0
46
+ I
47
+ 0
48
+ I
49
+ 0
50
+ n
51
+ p
52
+ 5
53
+ x
54
+ 6
55
+ Module
56
+ x
57
+ 10
58
+ open_class
59
+ x
60
+ 14
61
+ __class_init__
62
+ M
63
+ 1
64
+ n
65
+ n
66
+ x
67
+ 6
68
+ Module
69
+ i
70
+ 66
71
+ 5
72
+ 66
73
+ 5
74
+ 48
75
+ 0
76
+ 78
77
+ 49
78
+ 1
79
+ 1
80
+ 45
81
+ 2
82
+ 3
83
+ 49
84
+ 4
85
+ 1
86
+ 9
87
+ 46
88
+ 99
89
+ 7
90
+ 5
91
+ 7
92
+ 6
93
+ 65
94
+ 67
95
+ 49
96
+ 7
97
+ 0
98
+ 49
99
+ 8
100
+ 4
101
+ 15
102
+ 99
103
+ 7
104
+ 9
105
+ 7
106
+ 10
107
+ 65
108
+ 67
109
+ 49
110
+ 7
111
+ 0
112
+ 49
113
+ 8
114
+ 4
115
+ 8
116
+ 65
117
+ 5
118
+ 7
119
+ 5
120
+ 7
121
+ 0
122
+ 47
123
+ 49
124
+ 11
125
+ 2
126
+ 15
127
+ 5
128
+ 7
129
+ 9
130
+ 7
131
+ 12
132
+ 47
133
+ 49
134
+ 11
135
+ 2
136
+ 11
137
+ I
138
+ 5
139
+ I
140
+ 0
141
+ I
142
+ 0
143
+ I
144
+ 0
145
+ n
146
+ p
147
+ 13
148
+ x
149
+ 16
150
+ instance_methods
151
+ x
152
+ 2
153
+ []
154
+ x
155
+ 6
156
+ Symbol
157
+ n
158
+ x
159
+ 5
160
+ is_a?
161
+ x
162
+ 21
163
+ instance_method_names
164
+ M
165
+ 1
166
+ n
167
+ n
168
+ x
169
+ 21
170
+ instance_method_names
171
+ i
172
+ 26
173
+ 5
174
+ 20
175
+ 0
176
+ 36
177
+ 1
178
+ 47
179
+ 51
180
+ 0
181
+ 0
182
+ 7
183
+ 1
184
+ 13
185
+ 70
186
+ 10
187
+ 22
188
+ 44
189
+ 43
190
+ 2
191
+ 12
192
+ 49
193
+ 3
194
+ 1
195
+ 50
196
+ 4
197
+ 0
198
+ 11
199
+ I
200
+ 4
201
+ I
202
+ 1
203
+ I
204
+ 0
205
+ I
206
+ 0
207
+ I
208
+ 0
209
+ p
210
+ 5
211
+ x
212
+ 16
213
+ instance_methods
214
+ x
215
+ 4
216
+ to_s
217
+ x
218
+ 4
219
+ Proc
220
+ x
221
+ 14
222
+ __from_block__
223
+ x
224
+ 3
225
+ map
226
+ p
227
+ 5
228
+ I
229
+ -1
230
+ I
231
+ 3
232
+ I
233
+ 0
234
+ I
235
+ 4
236
+ I
237
+ 1a
238
+ x
239
+ 101
240
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/module/method_names.rb
241
+ p
242
+ 1
243
+ x
244
+ 4
245
+ args
246
+ x
247
+ 17
248
+ method_visibility
249
+ x
250
+ 15
251
+ add_defn_method
252
+ x
253
+ 12
254
+ method_names
255
+ M
256
+ 1
257
+ n
258
+ n
259
+ x
260
+ 12
261
+ method_names
262
+ i
263
+ 26
264
+ 5
265
+ 20
266
+ 0
267
+ 36
268
+ 1
269
+ 47
270
+ 51
271
+ 0
272
+ 0
273
+ 7
274
+ 1
275
+ 13
276
+ 70
277
+ 10
278
+ 22
279
+ 44
280
+ 43
281
+ 2
282
+ 12
283
+ 49
284
+ 3
285
+ 1
286
+ 50
287
+ 4
288
+ 0
289
+ 11
290
+ I
291
+ 4
292
+ I
293
+ 1
294
+ I
295
+ 0
296
+ I
297
+ 0
298
+ I
299
+ 0
300
+ p
301
+ 5
302
+ x
303
+ 7
304
+ methods
305
+ x
306
+ 4
307
+ to_s
308
+ x
309
+ 4
310
+ Proc
311
+ x
312
+ 14
313
+ __from_block__
314
+ x
315
+ 3
316
+ map
317
+ p
318
+ 5
319
+ I
320
+ -1
321
+ I
322
+ 7
323
+ I
324
+ 0
325
+ I
326
+ 8
327
+ I
328
+ 1a
329
+ x
330
+ 101
331
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/module/method_names.rb
332
+ p
333
+ 1
334
+ x
335
+ 4
336
+ args
337
+ x
338
+ 12
339
+ alias_method
340
+ x
341
+ 7
342
+ methods
343
+ p
344
+ 11
345
+ I
346
+ 2
347
+ I
348
+ 2
349
+ I
350
+ 11
351
+ I
352
+ 3
353
+ I
354
+ 1f
355
+ I
356
+ 7
357
+ I
358
+ 2e
359
+ I
360
+ b
361
+ I
362
+ 38
363
+ I
364
+ c
365
+ I
366
+ 42
367
+ x
368
+ 101
369
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/module/method_names.rb
370
+ p
371
+ 0
372
+ x
373
+ 13
374
+ attach_method
375
+ p
376
+ 3
377
+ I
378
+ 0
379
+ I
380
+ 1
381
+ I
382
+ 1d
383
+ x
384
+ 101
385
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/module/method_names.rb
386
+ p
387
+ 0
@@ -0,0 +1,300 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 47
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
+ 1
35
+ 65
36
+ 49
37
+ 4
38
+ 3
39
+ 13
40
+ 99
41
+ 12
42
+ 7
43
+ 5
44
+ 12
45
+ 7
46
+ 6
47
+ 12
48
+ 65
49
+ 12
50
+ 49
51
+ 7
52
+ 4
53
+ 15
54
+ 49
55
+ 5
56
+ 0
57
+ 15
58
+ 2
59
+ 11
60
+ I
61
+ 6
62
+ I
63
+ 0
64
+ I
65
+ 0
66
+ I
67
+ 0
68
+ n
69
+ p
70
+ 8
71
+ s
72
+ 40
73
+ active_support/core_ext/module/anonymous
74
+ x
75
+ 7
76
+ require
77
+ s
78
+ 42
79
+ active_support/core_ext/string/inflections
80
+ x
81
+ 6
82
+ Module
83
+ x
84
+ 10
85
+ open_class
86
+ x
87
+ 14
88
+ __class_init__
89
+ M
90
+ 1
91
+ n
92
+ n
93
+ x
94
+ 6
95
+ Module
96
+ i
97
+ 16
98
+ 5
99
+ 66
100
+ 99
101
+ 7
102
+ 0
103
+ 7
104
+ 1
105
+ 65
106
+ 67
107
+ 49
108
+ 2
109
+ 0
110
+ 49
111
+ 3
112
+ 4
113
+ 11
114
+ I
115
+ 5
116
+ I
117
+ 0
118
+ I
119
+ 0
120
+ I
121
+ 0
122
+ n
123
+ p
124
+ 4
125
+ x
126
+ 10
127
+ reachable?
128
+ M
129
+ 1
130
+ n
131
+ n
132
+ x
133
+ 10
134
+ reachable?
135
+ i
136
+ 66
137
+ 26
138
+ 93
139
+ 0
140
+ 15
141
+ 29
142
+ 35
143
+ 0
144
+ 5
145
+ 47
146
+ 49
147
+ 0
148
+ 0
149
+ 10
150
+ 17
151
+ 2
152
+ 8
153
+ 18
154
+ 3
155
+ 13
156
+ 9
157
+ 32
158
+ 15
159
+ 5
160
+ 48
161
+ 1
162
+ 49
163
+ 2
164
+ 0
165
+ 5
166
+ 49
167
+ 3
168
+ 1
169
+ 30
170
+ 8
171
+ 62
172
+ 26
173
+ 93
174
+ 1
175
+ 15
176
+ 24
177
+ 13
178
+ 45
179
+ 4
180
+ 5
181
+ 12
182
+ 49
183
+ 6
184
+ 1
185
+ 10
186
+ 52
187
+ 8
188
+ 57
189
+ 15
190
+ 3
191
+ 25
192
+ 8
193
+ 62
194
+ 15
195
+ 92
196
+ 1
197
+ 27
198
+ 34
199
+ 92
200
+ 0
201
+ 27
202
+ 11
203
+ I
204
+ 5
205
+ I
206
+ 0
207
+ I
208
+ 0
209
+ I
210
+ 0
211
+ n
212
+ p
213
+ 7
214
+ x
215
+ 10
216
+ anonymous?
217
+ x
218
+ 4
219
+ name
220
+ x
221
+ 11
222
+ constantize
223
+ x
224
+ 6
225
+ equal?
226
+ x
227
+ 9
228
+ NameError
229
+ n
230
+ x
231
+ 3
232
+ ===
233
+ p
234
+ 9
235
+ I
236
+ -1
237
+ I
238
+ 5
239
+ I
240
+ 0
241
+ I
242
+ 6
243
+ I
244
+ 28
245
+ I
246
+ 7
247
+ I
248
+ 35
249
+ I
250
+ 8
251
+ I
252
+ 42
253
+ x
254
+ 98
255
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/module/reachable.rb
256
+ p
257
+ 0
258
+ x
259
+ 17
260
+ method_visibility
261
+ x
262
+ 15
263
+ add_defn_method
264
+ p
265
+ 3
266
+ I
267
+ 2
268
+ I
269
+ 5
270
+ I
271
+ 10
272
+ x
273
+ 98
274
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/module/reachable.rb
275
+ p
276
+ 0
277
+ x
278
+ 13
279
+ attach_method
280
+ p
281
+ 7
282
+ I
283
+ 0
284
+ I
285
+ 1
286
+ I
287
+ 9
288
+ I
289
+ 2
290
+ I
291
+ 12
292
+ I
293
+ 4
294
+ I
295
+ 2f
296
+ x
297
+ 98
298
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/module/reachable.rb
299
+ p
300
+ 0