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