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