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