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,562 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 46
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 65
26
+ 49
27
+ 3
28
+ 2
29
+ 13
30
+ 99
31
+ 12
32
+ 7
33
+ 4
34
+ 12
35
+ 7
36
+ 5
37
+ 12
38
+ 65
39
+ 12
40
+ 49
41
+ 6
42
+ 4
43
+ 15
44
+ 49
45
+ 4
46
+ 0
47
+ 15
48
+ 5
49
+ 7
50
+ 7
51
+ 64
52
+ 47
53
+ 49
54
+ 1
55
+ 1
56
+ 15
57
+ 2
58
+ 11
59
+ I
60
+ 6
61
+ I
62
+ 0
63
+ I
64
+ 0
65
+ I
66
+ 0
67
+ n
68
+ p
69
+ 8
70
+ s
71
+ 50
72
+ active_support/core_ext/module/attribute_accessors
73
+ x
74
+ 7
75
+ require
76
+ x
77
+ 13
78
+ ActiveSupport
79
+ x
80
+ 11
81
+ open_module
82
+ x
83
+ 15
84
+ __module_init__
85
+ M
86
+ 1
87
+ n
88
+ n
89
+ x
90
+ 13
91
+ ActiveSupport
92
+ i
93
+ 28
94
+ 5
95
+ 66
96
+ 99
97
+ 7
98
+ 0
99
+ 65
100
+ 49
101
+ 1
102
+ 2
103
+ 13
104
+ 99
105
+ 12
106
+ 7
107
+ 2
108
+ 12
109
+ 7
110
+ 3
111
+ 12
112
+ 65
113
+ 12
114
+ 49
115
+ 4
116
+ 4
117
+ 15
118
+ 49
119
+ 2
120
+ 0
121
+ 11
122
+ I
123
+ 6
124
+ I
125
+ 0
126
+ I
127
+ 0
128
+ I
129
+ 0
130
+ n
131
+ p
132
+ 5
133
+ x
134
+ 9
135
+ Multibyte
136
+ x
137
+ 11
138
+ open_module
139
+ x
140
+ 15
141
+ __module_init__
142
+ M
143
+ 1
144
+ n
145
+ n
146
+ x
147
+ 9
148
+ Multibyte
149
+ i
150
+ 125
151
+ 5
152
+ 66
153
+ 5
154
+ 7
155
+ 0
156
+ 7
157
+ 1
158
+ 64
159
+ 47
160
+ 49
161
+ 2
162
+ 2
163
+ 15
164
+ 5
165
+ 7
166
+ 3
167
+ 7
168
+ 4
169
+ 64
170
+ 47
171
+ 49
172
+ 2
173
+ 2
174
+ 15
175
+ 5
176
+ 7
177
+ 5
178
+ 7
179
+ 6
180
+ 64
181
+ 47
182
+ 49
183
+ 2
184
+ 2
185
+ 15
186
+ 99
187
+ 7
188
+ 7
189
+ 7
190
+ 8
191
+ 65
192
+ 5
193
+ 49
194
+ 9
195
+ 4
196
+ 15
197
+ 99
198
+ 7
199
+ 10
200
+ 7
201
+ 11
202
+ 65
203
+ 5
204
+ 49
205
+ 9
206
+ 4
207
+ 15
208
+ 65
209
+ 7
210
+ 12
211
+ 44
212
+ 43
213
+ 13
214
+ 80
215
+ 49
216
+ 14
217
+ 1
218
+ 13
219
+ 7
220
+ 15
221
+ 64
222
+ 7
223
+ 16
224
+ 13
225
+ 70
226
+ 9
227
+ 90
228
+ 15
229
+ 44
230
+ 43
231
+ 17
232
+ 7
233
+ 18
234
+ 4
235
+ 18
236
+ 49
237
+ 19
238
+ 2
239
+ 6
240
+ 16
241
+ 49
242
+ 20
243
+ 2
244
+ 15
245
+ 13
246
+ 7
247
+ 21
248
+ 64
249
+ 7
250
+ 22
251
+ 13
252
+ 70
253
+ 9
254
+ 117
255
+ 15
256
+ 44
257
+ 43
258
+ 17
259
+ 7
260
+ 23
261
+ 4
262
+ 18
263
+ 49
264
+ 19
265
+ 2
266
+ 6
267
+ 22
268
+ 49
269
+ 20
270
+ 2
271
+ 15
272
+ 49
273
+ 24
274
+ 2
275
+ 11
276
+ I
277
+ 8
278
+ I
279
+ 0
280
+ I
281
+ 0
282
+ I
283
+ 0
284
+ n
285
+ p
286
+ 25
287
+ x
288
+ 13
289
+ EncodingError
290
+ s
291
+ 35
292
+ active_support/multibyte/exceptions
293
+ x
294
+ 8
295
+ autoload
296
+ x
297
+ 5
298
+ Chars
299
+ s
300
+ 30
301
+ active_support/multibyte/chars
302
+ x
303
+ 7
304
+ Unicode
305
+ s
306
+ 32
307
+ active_support/multibyte/unicode
308
+ x
309
+ 12
310
+ proxy_class=
311
+ M
312
+ 1
313
+ n
314
+ n
315
+ x
316
+ 12
317
+ proxy_class=
318
+ i
319
+ 5
320
+ 20
321
+ 0
322
+ 38
323
+ 0
324
+ 11
325
+ I
326
+ 2
327
+ I
328
+ 1
329
+ I
330
+ 1
331
+ I
332
+ 1
333
+ n
334
+ p
335
+ 1
336
+ x
337
+ 12
338
+ @proxy_class
339
+ p
340
+ 5
341
+ I
342
+ -1
343
+ I
344
+ 10
345
+ I
346
+ 0
347
+ I
348
+ 11
349
+ I
350
+ 5
351
+ x
352
+ 82
353
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/multibyte.rb
354
+ p
355
+ 1
356
+ x
357
+ 5
358
+ klass
359
+ x
360
+ 13
361
+ attach_method
362
+ x
363
+ 11
364
+ proxy_class
365
+ M
366
+ 1
367
+ n
368
+ n
369
+ x
370
+ 11
371
+ proxy_class
372
+ i
373
+ 16
374
+ 39
375
+ 0
376
+ 13
377
+ 10
378
+ 15
379
+ 15
380
+ 45
381
+ 1
382
+ 2
383
+ 43
384
+ 3
385
+ 43
386
+ 4
387
+ 38
388
+ 0
389
+ 11
390
+ I
391
+ 2
392
+ I
393
+ 0
394
+ I
395
+ 0
396
+ I
397
+ 0
398
+ n
399
+ p
400
+ 5
401
+ x
402
+ 12
403
+ @proxy_class
404
+ x
405
+ 13
406
+ ActiveSupport
407
+ n
408
+ x
409
+ 9
410
+ Multibyte
411
+ x
412
+ 5
413
+ Chars
414
+ p
415
+ 5
416
+ I
417
+ -1
418
+ I
419
+ 15
420
+ I
421
+ 0
422
+ I
423
+ 16
424
+ I
425
+ 10
426
+ x
427
+ 82
428
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/multibyte.rb
429
+ p
430
+ 0
431
+ x
432
+ 15
433
+ VALID_CHARACTER
434
+ x
435
+ 4
436
+ Hash
437
+ x
438
+ 16
439
+ new_from_literal
440
+ s
441
+ 5
442
+ UTF-8
443
+ n
444
+ x
445
+ 6
446
+ Regexp
447
+ s
448
+ 507
449
+ \A(?:
450
+ [\x00-\x7f] |
451
+ [\xc2-\xdf] [\x80-\xbf] |
452
+ \xe0 [\xa0-\xbf] [\x80-\xbf] |
453
+ [\xe1-\xef] [\x80-\xbf] [\x80-\xbf] |
454
+ \xf0 [\x90-\xbf] [\x80-\xbf] [\x80-\xbf] |
455
+ [\xf1-\xf3] [\x80-\xbf] [\x80-\xbf] [\x80-\xbf] |
456
+ \xf4 [\x80-\x8f] [\x80-\xbf] [\x80-\xbf])\z
457
+ x
458
+ 3
459
+ new
460
+ x
461
+ 3
462
+ []=
463
+ s
464
+ 9
465
+ Shift_JIS
466
+ n
467
+ s
468
+ 155
469
+ \A(?:
470
+ [\x00-\x7e\xa1-\xdf] |
471
+ [\x81-\x9f\xe0-\xef] [\x40-\x7e\x80-\x9e\x9f-\xfc])\z
472
+ x
473
+ 9
474
+ const_set
475
+ p
476
+ 19
477
+ I
478
+ 2
479
+ I
480
+ 6
481
+ I
482
+ d
483
+ I
484
+ 7
485
+ I
486
+ 18
487
+ I
488
+ 8
489
+ I
490
+ 23
491
+ I
492
+ 10
493
+ I
494
+ 2e
495
+ I
496
+ 15
497
+ I
498
+ 39
499
+ I
500
+ 1a
501
+ I
502
+ 3c
503
+ I
504
+ 28
505
+ I
506
+ 44
507
+ I
508
+ 1c
509
+ I
510
+ 5f
511
+ I
512
+ 25
513
+ I
514
+ 7d
515
+ x
516
+ 82
517
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/multibyte.rb
518
+ p
519
+ 0
520
+ x
521
+ 13
522
+ attach_method
523
+ p
524
+ 3
525
+ I
526
+ 2
527
+ I
528
+ 5
529
+ I
530
+ 1c
531
+ x
532
+ 82
533
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/multibyte.rb
534
+ p
535
+ 0
536
+ x
537
+ 13
538
+ attach_method
539
+ s
540
+ 30
541
+ active_support/multibyte/utils
542
+ p
543
+ 7
544
+ I
545
+ 0
546
+ I
547
+ 2
548
+ I
549
+ 9
550
+ I
551
+ 4
552
+ I
553
+ 23
554
+ I
555
+ 2c
556
+ I
557
+ 2e
558
+ x
559
+ 82
560
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/multibyte.rb
561
+ p
562
+ 0