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.
- data/CHANGELOG +5 -0
- data/lib/active_support.rbc +1184 -0
- data/lib/active_support/all.rbc +85 -0
- data/lib/active_support/base64.rbc +578 -0
- data/lib/active_support/basic_object.rbc +536 -0
- data/lib/active_support/benchmarkable.rbc +885 -0
- data/lib/active_support/buffered_logger.rbc +2367 -0
- data/lib/active_support/cache.rbc +8453 -0
- data/lib/active_support/cache/file_store.rbc +4077 -0
- data/lib/active_support/cache/strategy/local_cache.rbc +2930 -0
- data/lib/active_support/callbacks.rbc +7817 -0
- data/lib/active_support/concern.rbc +729 -0
- data/lib/active_support/configurable.rbc +985 -0
- data/lib/active_support/core_ext.rbc +191 -0
- data/lib/active_support/core_ext/array.rbc +149 -0
- data/lib/active_support/core_ext/array/access.rbc +627 -0
- data/lib/active_support/core_ext/array/conversions.rbc +1922 -0
- data/lib/active_support/core_ext/array/extract_options.rbc +378 -0
- data/lib/active_support/core_ext/array/grouping.rbc +1121 -0
- data/lib/active_support/core_ext/array/random_access.rbc +745 -0
- data/lib/active_support/core_ext/array/uniq_by.rbc +444 -0
- data/lib/active_support/core_ext/array/wrap.rbc +226 -0
- data/lib/active_support/core_ext/benchmark.rbc +261 -0
- data/lib/active_support/core_ext/big_decimal.rbc +53 -0
- data/lib/active_support/core_ext/big_decimal/conversions.rbc +681 -0
- data/lib/active_support/core_ext/cgi.rbc +53 -0
- data/lib/active_support/core_ext/cgi/escape_skipping_slashes.rbc +666 -0
- data/lib/active_support/core_ext/class.rbc +117 -0
- data/lib/active_support/core_ext/class/attribute.rbc +566 -0
- data/lib/active_support/core_ext/class/attribute_accessors.rbc +940 -0
- data/lib/active_support/core_ext/class/delegating_attributes.rbc +1266 -0
- data/lib/active_support/core_ext/class/inheritable_attributes.rbc +3573 -0
- data/lib/active_support/core_ext/class/subclasses.rbc +1140 -0
- data/lib/active_support/core_ext/date/acts_like.rbc +193 -0
- data/lib/active_support/core_ext/date/calculations.rbc +4918 -0
- data/lib/active_support/core_ext/date/conversions.rbc +1178 -0
- data/lib/active_support/core_ext/date/freeze.rbc +545 -0
- data/lib/active_support/core_ext/date/zones.rbc +268 -0
- data/lib/active_support/core_ext/date_time/acts_like.rbc +253 -0
- data/lib/active_support/core_ext/date_time/calculations.rbc +2133 -0
- data/lib/active_support/core_ext/date_time/conversions.rbc +1548 -0
- data/lib/active_support/core_ext/date_time/zones.rbc +328 -0
- data/lib/active_support/core_ext/enumerable.rbc +1472 -0
- data/lib/active_support/core_ext/exception.rbc +160 -0
- data/lib/active_support/core_ext/file.rbc +69 -0
- data/lib/active_support/core_ext/file/atomic.rbc +730 -0
- data/lib/active_support/core_ext/file/path.rbc +161 -0
- data/lib/active_support/core_ext/float.rbc +53 -0
- data/lib/active_support/core_ext/float/rounding.rbc +284 -0
- data/lib/active_support/core_ext/hash.rbc +165 -0
- data/lib/active_support/core_ext/hash/conversions.rb +1 -1
- data/lib/active_support/core_ext/hash/conversions.rbc +2470 -0
- data/lib/active_support/core_ext/hash/deep_merge.rbc +409 -0
- data/lib/active_support/core_ext/hash/diff.rbc +344 -0
- data/lib/active_support/core_ext/hash/except.rbc +328 -0
- data/lib/active_support/core_ext/hash/indifferent_access.rbc +211 -0
- data/lib/active_support/core_ext/hash/keys.rbc +822 -0
- data/lib/active_support/core_ext/hash/reverse_merge.rbc +343 -0
- data/lib/active_support/core_ext/hash/slice.rbc +816 -0
- data/lib/active_support/core_ext/integer.rbc +85 -0
- data/lib/active_support/core_ext/integer/inflections.rbc +211 -0
- data/lib/active_support/core_ext/integer/multiple.rbc +214 -0
- data/lib/active_support/core_ext/integer/time.rbc +439 -0
- data/lib/active_support/core_ext/kernel.rbc +117 -0
- data/lib/active_support/core_ext/kernel/agnostics.rbc +304 -0
- data/lib/active_support/core_ext/kernel/debugger.rbc +489 -0
- data/lib/active_support/core_ext/kernel/reporting.rbc +1056 -0
- data/lib/active_support/core_ext/kernel/requires.rbc +461 -0
- data/lib/active_support/core_ext/kernel/singleton_class.rbc +309 -0
- data/lib/active_support/core_ext/load_error.rbc +575 -0
- data/lib/active_support/core_ext/logger.rbc +1654 -0
- data/lib/active_support/core_ext/module.rbc +229 -0
- data/lib/active_support/core_ext/module/aliasing.rbc +642 -0
- data/lib/active_support/core_ext/module/anonymous.rbc +204 -0
- data/lib/active_support/core_ext/module/attr_accessor_with_default.rbc +401 -0
- data/lib/active_support/core_ext/module/attr_internal.rbc +796 -0
- data/lib/active_support/core_ext/module/attribute_accessors.rbc +849 -0
- data/lib/active_support/core_ext/module/delegation.rbc +850 -0
- data/lib/active_support/core_ext/module/deprecation.rbc +219 -0
- data/lib/active_support/core_ext/module/introspection.rbc +1215 -0
- data/lib/active_support/core_ext/module/method_names.rbc +387 -0
- data/lib/active_support/core_ext/module/reachable.rbc +300 -0
- data/lib/active_support/core_ext/module/remove_method.rbc +350 -0
- data/lib/active_support/core_ext/module/synchronization.rbc +644 -0
- data/lib/active_support/core_ext/name_error.rbc +422 -0
- data/lib/active_support/core_ext/numeric.rbc +69 -0
- data/lib/active_support/core_ext/numeric/bytes.rbc +873 -0
- data/lib/active_support/core_ext/numeric/time.rbc +1299 -0
- data/lib/active_support/core_ext/object.rbc +213 -0
- data/lib/active_support/core_ext/object/acts_like.rbc +211 -0
- data/lib/active_support/core_ext/object/blank.rbc +1219 -0
- data/lib/active_support/core_ext/object/conversions.rbc +101 -0
- data/lib/active_support/core_ext/object/duplicable.rbc +1091 -0
- data/lib/active_support/core_ext/object/instance_variables.rbc +746 -0
- data/lib/active_support/core_ext/object/returning.rbc +222 -0
- data/lib/active_support/core_ext/object/to_json.rbc +259 -0
- data/lib/active_support/core_ext/object/to_param.rbc +1057 -0
- data/lib/active_support/core_ext/object/to_query.rbc +771 -0
- data/lib/active_support/core_ext/object/try.rbc +389 -0
- data/lib/active_support/core_ext/object/with_options.rbc +245 -0
- data/lib/active_support/core_ext/proc.rbc +416 -0
- data/lib/active_support/core_ext/process.rbc +53 -0
- data/lib/active_support/core_ext/process/daemon.rbc +466 -0
- data/lib/active_support/core_ext/range.rbc +101 -0
- data/lib/active_support/core_ext/range/blockless_step.rbc +551 -0
- data/lib/active_support/core_ext/range/conversions.rbc +447 -0
- data/lib/active_support/core_ext/range/include_range.rbc +340 -0
- data/lib/active_support/core_ext/range/overlaps.rbc +204 -0
- data/lib/active_support/core_ext/regexp.rbc +201 -0
- data/lib/active_support/core_ext/rexml.rbc +953 -0
- data/lib/active_support/core_ext/string.rbc +245 -0
- data/lib/active_support/core_ext/string/access.rbc +1254 -0
- data/lib/active_support/core_ext/string/behavior.rbc +174 -0
- data/lib/active_support/core_ext/string/conversions.rbc +964 -0
- data/lib/active_support/core_ext/string/encoding.rbc +295 -0
- data/lib/active_support/core_ext/string/exclude.rbc +192 -0
- data/lib/active_support/core_ext/string/filters.rbc +640 -0
- data/lib/active_support/core_ext/string/inflections.rbc +1320 -0
- data/lib/active_support/core_ext/string/interpolation.rbc +69 -0
- data/lib/active_support/core_ext/string/multibyte.rbc +690 -0
- data/lib/active_support/core_ext/string/output_safety.rbc +2035 -0
- data/lib/active_support/core_ext/string/starts_ends_with.rbc +151 -0
- data/lib/active_support/core_ext/string/strip.rbc +301 -0
- data/lib/active_support/core_ext/string/xchar.rbc +294 -0
- data/lib/active_support/core_ext/time/acts_like.rbc +193 -0
- data/lib/active_support/core_ext/time/calculations.rbc +5893 -0
- data/lib/active_support/core_ext/time/conversions.rbc +1193 -0
- data/lib/active_support/core_ext/time/marshal.rbc +1245 -0
- data/lib/active_support/core_ext/time/publicize_conversion_methods.rbc +259 -0
- data/lib/active_support/core_ext/time/zones.rbc +1061 -0
- data/lib/active_support/core_ext/uri.rbc +516 -0
- data/lib/active_support/dependencies.rbc +12236 -0
- data/lib/active_support/dependencies/autoload.rbc +1153 -0
- data/lib/active_support/deprecation.rbc +411 -0
- data/lib/active_support/deprecation/behaviors.rbc +1200 -0
- data/lib/active_support/deprecation/method_wrappers.rbc +628 -0
- data/lib/active_support/deprecation/proxy_wrappers.rbc +1925 -0
- data/lib/active_support/deprecation/reporting.rbc +1516 -0
- data/lib/active_support/descendants_tracker.rbc +1060 -0
- data/lib/active_support/duration.rbc +2432 -0
- data/lib/active_support/file_update_checker.rbc +595 -0
- data/lib/active_support/hash_with_indifferent_access.rbc +2560 -0
- data/lib/active_support/i18n.rbc +262 -0
- data/lib/active_support/i18n_railtie.rbc +1869 -0
- data/lib/active_support/inflections.rbc +2076 -0
- data/lib/active_support/inflector.rbc +117 -0
- data/lib/active_support/inflector/inflections.rbc +3699 -0
- data/lib/active_support/inflector/methods.rbc +1881 -0
- data/lib/active_support/inflector/transliterate.rbc +684 -0
- data/lib/active_support/json.rbc +69 -0
- data/lib/active_support/json/decoding.rbc +1045 -0
- data/lib/active_support/json/encoding.rbc +7108 -0
- data/lib/active_support/json/variable.rbc +392 -0
- data/lib/active_support/lazy_load_hooks.rbc +703 -0
- data/lib/active_support/log_subscriber.rbc +2081 -0
- data/lib/active_support/memoizable.rbc +2164 -0
- data/lib/active_support/multibyte.rbc +562 -0
- data/lib/active_support/multibyte/utils.rbc +1062 -0
- data/lib/active_support/notifications.rbc +1241 -0
- data/lib/active_support/notifications/fanout.rbc +1632 -0
- data/lib/active_support/notifications/instrumenter.rbc +1207 -0
- data/lib/active_support/option_merger.rbc +721 -0
- data/lib/active_support/ordered_hash.rbc +3808 -0
- data/lib/active_support/ordered_options.rbc +750 -0
- data/lib/active_support/railtie.rbc +1051 -0
- data/lib/active_support/rescuable.rbc +1389 -0
- data/lib/active_support/ruby/shim.rbc +229 -0
- data/lib/active_support/secure_random.rbc +0 -0
- data/lib/active_support/string_inquirer.rbc +332 -0
- data/lib/active_support/test_case.rbc +1002 -0
- data/lib/active_support/testing/assertions.rbc +1063 -0
- data/lib/active_support/testing/declarative.rbc +904 -0
- data/lib/active_support/testing/default.rbc +319 -0
- data/lib/active_support/testing/deprecation.rbc +1562 -0
- data/lib/active_support/testing/isolation.rbc +4048 -0
- data/lib/active_support/testing/pending.rbc +961 -0
- data/lib/active_support/testing/setup_and_teardown.rbc +2684 -0
- data/lib/active_support/time.rbc +574 -0
- data/lib/active_support/time_with_zone.rbc +5988 -0
- data/lib/active_support/values/time_zone.rbc +6915 -0
- data/lib/active_support/version.rb +2 -2
- data/lib/active_support/version.rbc +295 -0
- data/lib/active_support/whiny_nil.rbc +826 -0
- data/lib/active_support/xml_mini.rbc +4291 -0
- data/lib/active_support/xml_mini/rexml.rbc +1744 -0
- metadata +196 -10
@@ -0,0 +1,117 @@
|
|
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
|
+
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
|
+
5
|
50
|
+
7
|
51
|
+
5
|
52
|
+
64
|
53
|
+
47
|
54
|
+
49
|
55
|
+
1
|
56
|
+
1
|
57
|
+
15
|
58
|
+
2
|
59
|
+
11
|
60
|
+
I
|
61
|
+
2
|
62
|
+
I
|
63
|
+
0
|
64
|
+
I
|
65
|
+
0
|
66
|
+
I
|
67
|
+
0
|
68
|
+
n
|
69
|
+
p
|
70
|
+
6
|
71
|
+
s
|
72
|
+
39
|
73
|
+
active_support/core_ext/class/attribute
|
74
|
+
x
|
75
|
+
7
|
76
|
+
require
|
77
|
+
s
|
78
|
+
49
|
79
|
+
active_support/core_ext/class/attribute_accessors
|
80
|
+
s
|
81
|
+
52
|
82
|
+
active_support/core_ext/class/inheritable_attributes
|
83
|
+
s
|
84
|
+
51
|
85
|
+
active_support/core_ext/class/delegating_attributes
|
86
|
+
s
|
87
|
+
40
|
88
|
+
active_support/core_ext/class/subclasses
|
89
|
+
p
|
90
|
+
11
|
91
|
+
I
|
92
|
+
0
|
93
|
+
I
|
94
|
+
1
|
95
|
+
I
|
96
|
+
9
|
97
|
+
I
|
98
|
+
2
|
99
|
+
I
|
100
|
+
12
|
101
|
+
I
|
102
|
+
3
|
103
|
+
I
|
104
|
+
1b
|
105
|
+
I
|
106
|
+
4
|
107
|
+
I
|
108
|
+
24
|
109
|
+
I
|
110
|
+
5
|
111
|
+
I
|
112
|
+
2f
|
113
|
+
x
|
114
|
+
87
|
115
|
+
/Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class.rb
|
116
|
+
p
|
117
|
+
0
|
@@ -0,0 +1,566 @@
|
|
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
|
+
46
|
73
|
+
active_support/core_ext/kernel/singleton_class
|
74
|
+
x
|
75
|
+
7
|
76
|
+
require
|
77
|
+
s
|
78
|
+
44
|
79
|
+
active_support/core_ext/module/remove_method
|
80
|
+
x
|
81
|
+
5
|
82
|
+
Class
|
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
|
+
5
|
95
|
+
Class
|
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
|
+
15
|
127
|
+
class_attribute
|
128
|
+
M
|
129
|
+
1
|
130
|
+
n
|
131
|
+
n
|
132
|
+
x
|
133
|
+
15
|
134
|
+
class_attribute
|
135
|
+
i
|
136
|
+
42
|
137
|
+
20
|
138
|
+
0
|
139
|
+
49
|
140
|
+
0
|
141
|
+
0
|
142
|
+
45
|
143
|
+
1
|
144
|
+
2
|
145
|
+
49
|
146
|
+
3
|
147
|
+
1
|
148
|
+
10
|
149
|
+
16
|
150
|
+
2
|
151
|
+
8
|
152
|
+
17
|
153
|
+
3
|
154
|
+
13
|
155
|
+
10
|
156
|
+
31
|
157
|
+
15
|
158
|
+
20
|
159
|
+
0
|
160
|
+
49
|
161
|
+
4
|
162
|
+
0
|
163
|
+
7
|
164
|
+
5
|
165
|
+
49
|
166
|
+
6
|
167
|
+
1
|
168
|
+
19
|
169
|
+
1
|
170
|
+
15
|
171
|
+
20
|
172
|
+
0
|
173
|
+
56
|
174
|
+
7
|
175
|
+
50
|
176
|
+
8
|
177
|
+
0
|
178
|
+
11
|
179
|
+
I
|
180
|
+
4
|
181
|
+
I
|
182
|
+
2
|
183
|
+
I
|
184
|
+
0
|
185
|
+
I
|
186
|
+
0
|
187
|
+
I
|
188
|
+
0
|
189
|
+
p
|
190
|
+
9
|
191
|
+
x
|
192
|
+
4
|
193
|
+
last
|
194
|
+
x
|
195
|
+
4
|
196
|
+
Hash
|
197
|
+
n
|
198
|
+
x
|
199
|
+
5
|
200
|
+
is_a?
|
201
|
+
x
|
202
|
+
3
|
203
|
+
pop
|
204
|
+
x
|
205
|
+
15
|
206
|
+
instance_writer
|
207
|
+
x
|
208
|
+
2
|
209
|
+
[]
|
210
|
+
M
|
211
|
+
1
|
212
|
+
p
|
213
|
+
2
|
214
|
+
x
|
215
|
+
9
|
216
|
+
for_block
|
217
|
+
t
|
218
|
+
n
|
219
|
+
x
|
220
|
+
15
|
221
|
+
class_attribute
|
222
|
+
i
|
223
|
+
123
|
224
|
+
57
|
225
|
+
19
|
226
|
+
0
|
227
|
+
15
|
228
|
+
5
|
229
|
+
7
|
230
|
+
0
|
231
|
+
20
|
232
|
+
0
|
233
|
+
47
|
234
|
+
101
|
235
|
+
1
|
236
|
+
7
|
237
|
+
2
|
238
|
+
20
|
239
|
+
0
|
240
|
+
47
|
241
|
+
101
|
242
|
+
1
|
243
|
+
7
|
244
|
+
3
|
245
|
+
20
|
246
|
+
0
|
247
|
+
47
|
248
|
+
101
|
249
|
+
1
|
250
|
+
7
|
251
|
+
4
|
252
|
+
20
|
253
|
+
0
|
254
|
+
47
|
255
|
+
101
|
256
|
+
1
|
257
|
+
7
|
258
|
+
5
|
259
|
+
20
|
260
|
+
0
|
261
|
+
47
|
262
|
+
101
|
263
|
+
1
|
264
|
+
7
|
265
|
+
6
|
266
|
+
20
|
267
|
+
0
|
268
|
+
47
|
269
|
+
101
|
270
|
+
1
|
271
|
+
7
|
272
|
+
7
|
273
|
+
20
|
274
|
+
0
|
275
|
+
47
|
276
|
+
101
|
277
|
+
1
|
278
|
+
7
|
279
|
+
8
|
280
|
+
20
|
281
|
+
0
|
282
|
+
47
|
283
|
+
101
|
284
|
+
1
|
285
|
+
7
|
286
|
+
9
|
287
|
+
20
|
288
|
+
0
|
289
|
+
47
|
290
|
+
101
|
291
|
+
1
|
292
|
+
7
|
293
|
+
10
|
294
|
+
20
|
295
|
+
0
|
296
|
+
47
|
297
|
+
101
|
298
|
+
1
|
299
|
+
7
|
300
|
+
11
|
301
|
+
20
|
302
|
+
0
|
303
|
+
47
|
304
|
+
101
|
305
|
+
1
|
306
|
+
7
|
307
|
+
12
|
308
|
+
20
|
309
|
+
0
|
310
|
+
47
|
311
|
+
101
|
312
|
+
1
|
313
|
+
7
|
314
|
+
13
|
315
|
+
63
|
316
|
+
25
|
317
|
+
65
|
318
|
+
49
|
319
|
+
14
|
320
|
+
0
|
321
|
+
4
|
322
|
+
66
|
323
|
+
79
|
324
|
+
81
|
325
|
+
15
|
326
|
+
47
|
327
|
+
49
|
328
|
+
16
|
329
|
+
3
|
330
|
+
15
|
331
|
+
21
|
332
|
+
1
|
333
|
+
1
|
334
|
+
9
|
335
|
+
121
|
336
|
+
5
|
337
|
+
20
|
338
|
+
0
|
339
|
+
47
|
340
|
+
49
|
341
|
+
17
|
342
|
+
1
|
343
|
+
8
|
344
|
+
122
|
345
|
+
1
|
346
|
+
11
|
347
|
+
I
|
348
|
+
1c
|
349
|
+
I
|
350
|
+
1
|
351
|
+
I
|
352
|
+
1
|
353
|
+
I
|
354
|
+
1
|
355
|
+
n
|
356
|
+
p
|
357
|
+
18
|
358
|
+
s
|
359
|
+
17
|
360
|
+
def self.
|
361
|
+
x
|
362
|
+
4
|
363
|
+
to_s
|
364
|
+
s
|
365
|
+
28
|
366
|
+
() nil end
|
367
|
+
def self.
|
368
|
+
s
|
369
|
+
6
|
370
|
+
?() !!
|
371
|
+
s
|
372
|
+
23
|
373
|
+
end
|
374
|
+
|
375
|
+
def self.
|
376
|
+
s
|
377
|
+
83
|
378
|
+
=(val)
|
379
|
+
singleton_class.class_eval do
|
380
|
+
remove_possible_method(:
|
381
|
+
s
|
382
|
+
29
|
383
|
+
)
|
384
|
+
define_method(:
|
385
|
+
s
|
386
|
+
63
|
387
|
+
) { val }
|
388
|
+
end
|
389
|
+
val
|
390
|
+
end
|
391
|
+
|
392
|
+
def
|
393
|
+
s
|
394
|
+
21
|
395
|
+
|
396
|
+
defined?(@
|
397
|
+
s
|
398
|
+
5
|
399
|
+
) ? @
|
400
|
+
s
|
401
|
+
19
|
402
|
+
: singleton_class.
|
403
|
+
s
|
404
|
+
26
|
405
|
+
|
406
|
+
end
|
407
|
+
|
408
|
+
def
|
409
|
+
s
|
410
|
+
14
|
411
|
+
?
|
412
|
+
!!
|
413
|
+
s
|
414
|
+
13
|
415
|
+
|
416
|
+
end
|
417
|
+
|
418
|
+
x
|
419
|
+
11
|
420
|
+
active_path
|
421
|
+
x
|
422
|
+
1
|
423
|
+
+
|
424
|
+
x
|
425
|
+
10
|
426
|
+
class_eval
|
427
|
+
x
|
428
|
+
11
|
429
|
+
attr_writer
|
430
|
+
p
|
431
|
+
27
|
432
|
+
I
|
433
|
+
0
|
434
|
+
I
|
435
|
+
41
|
436
|
+
I
|
437
|
+
4
|
438
|
+
I
|
439
|
+
42
|
440
|
+
I
|
441
|
+
5
|
442
|
+
I
|
443
|
+
43
|
444
|
+
I
|
445
|
+
e
|
446
|
+
I
|
447
|
+
44
|
448
|
+
I
|
449
|
+
1c
|
450
|
+
I
|
451
|
+
46
|
452
|
+
I
|
453
|
+
23
|
454
|
+
I
|
455
|
+
48
|
456
|
+
I
|
457
|
+
2a
|
458
|
+
I
|
459
|
+
49
|
460
|
+
I
|
461
|
+
31
|
462
|
+
I
|
463
|
+
4e
|
464
|
+
I
|
465
|
+
38
|
466
|
+
I
|
467
|
+
4f
|
468
|
+
I
|
469
|
+
4d
|
470
|
+
I
|
471
|
+
52
|
472
|
+
I
|
473
|
+
54
|
474
|
+
I
|
475
|
+
53
|
476
|
+
I
|
477
|
+
5d
|
478
|
+
I
|
479
|
+
42
|
480
|
+
I
|
481
|
+
6b
|
482
|
+
I
|
483
|
+
57
|
484
|
+
I
|
485
|
+
7b
|
486
|
+
x
|
487
|
+
97
|
488
|
+
/Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/attribute.rb
|
489
|
+
p
|
490
|
+
1
|
491
|
+
x
|
492
|
+
4
|
493
|
+
name
|
494
|
+
x
|
495
|
+
4
|
496
|
+
each
|
497
|
+
p
|
498
|
+
7
|
499
|
+
I
|
500
|
+
-1
|
501
|
+
I
|
502
|
+
3e
|
503
|
+
I
|
504
|
+
0
|
505
|
+
I
|
506
|
+
3f
|
507
|
+
I
|
508
|
+
22
|
509
|
+
I
|
510
|
+
41
|
511
|
+
I
|
512
|
+
2a
|
513
|
+
x
|
514
|
+
97
|
515
|
+
/Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/attribute.rb
|
516
|
+
p
|
517
|
+
2
|
518
|
+
x
|
519
|
+
5
|
520
|
+
attrs
|
521
|
+
x
|
522
|
+
15
|
523
|
+
instance_writer
|
524
|
+
x
|
525
|
+
17
|
526
|
+
method_visibility
|
527
|
+
x
|
528
|
+
15
|
529
|
+
add_defn_method
|
530
|
+
p
|
531
|
+
3
|
532
|
+
I
|
533
|
+
2
|
534
|
+
I
|
535
|
+
3e
|
536
|
+
I
|
537
|
+
10
|
538
|
+
x
|
539
|
+
97
|
540
|
+
/Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/attribute.rb
|
541
|
+
p
|
542
|
+
0
|
543
|
+
x
|
544
|
+
13
|
545
|
+
attach_method
|
546
|
+
p
|
547
|
+
7
|
548
|
+
I
|
549
|
+
0
|
550
|
+
I
|
551
|
+
1
|
552
|
+
I
|
553
|
+
9
|
554
|
+
I
|
555
|
+
2
|
556
|
+
I
|
557
|
+
12
|
558
|
+
I
|
559
|
+
4
|
560
|
+
I
|
561
|
+
2f
|
562
|
+
x
|
563
|
+
97
|
564
|
+
/Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/class/attribute.rb
|
565
|
+
p
|
566
|
+
0
|