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