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