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
metadata CHANGED
@@ -1,13 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
5
- prerelease:
4
+ hash: 15424079
5
+ prerelease: 6
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 6
10
- version: 3.0.6
9
+ - 7
10
+ - rc
11
+ - 1
12
+ version: 3.0.7.rc1
11
13
  platform: ruby
12
14
  authors:
13
15
  - David Heinemeier Hansson
@@ -15,7 +17,7 @@ autorequire:
15
17
  bindir: bin
16
18
  cert_chain: []
17
19
 
18
- date: 2011-04-05 00:00:00 -07:00
20
+ date: 2011-04-14 00:00:00 -03:00
19
21
  default_executable:
20
22
  dependencies: []
21
23
 
@@ -31,212 +33,394 @@ files:
31
33
  - CHANGELOG
32
34
  - README.rdoc
33
35
  - lib/active_support/all.rb
36
+ - lib/active_support/all.rbc
34
37
  - lib/active_support/backtrace_cleaner.rb
35
38
  - lib/active_support/base64.rb
39
+ - lib/active_support/base64.rbc
36
40
  - lib/active_support/basic_object.rb
41
+ - lib/active_support/basic_object.rbc
37
42
  - lib/active_support/benchmarkable.rb
43
+ - lib/active_support/benchmarkable.rbc
38
44
  - lib/active_support/buffered_logger.rb
45
+ - lib/active_support/buffered_logger.rbc
39
46
  - lib/active_support/builder.rb
40
47
  - lib/active_support/cache/compressed_mem_cache_store.rb
41
48
  - lib/active_support/cache/file_store.rb
49
+ - lib/active_support/cache/file_store.rbc
42
50
  - lib/active_support/cache/mem_cache_store.rb
43
51
  - lib/active_support/cache/memory_store.rb
44
52
  - lib/active_support/cache/strategy/local_cache.rb
53
+ - lib/active_support/cache/strategy/local_cache.rbc
45
54
  - lib/active_support/cache/synchronized_memory_store.rb
46
55
  - lib/active_support/cache.rb
56
+ - lib/active_support/cache.rbc
47
57
  - lib/active_support/callbacks.rb
58
+ - lib/active_support/callbacks.rbc
48
59
  - lib/active_support/concern.rb
60
+ - lib/active_support/concern.rbc
49
61
  - lib/active_support/configurable.rb
62
+ - lib/active_support/configurable.rbc
50
63
  - lib/active_support/core_ext/array/access.rb
64
+ - lib/active_support/core_ext/array/access.rbc
51
65
  - lib/active_support/core_ext/array/conversions.rb
66
+ - lib/active_support/core_ext/array/conversions.rbc
52
67
  - lib/active_support/core_ext/array/extract_options.rb
68
+ - lib/active_support/core_ext/array/extract_options.rbc
53
69
  - lib/active_support/core_ext/array/grouping.rb
70
+ - lib/active_support/core_ext/array/grouping.rbc
54
71
  - lib/active_support/core_ext/array/random_access.rb
72
+ - lib/active_support/core_ext/array/random_access.rbc
55
73
  - lib/active_support/core_ext/array/uniq_by.rb
74
+ - lib/active_support/core_ext/array/uniq_by.rbc
56
75
  - lib/active_support/core_ext/array/wrap.rb
76
+ - lib/active_support/core_ext/array/wrap.rbc
57
77
  - lib/active_support/core_ext/array.rb
78
+ - lib/active_support/core_ext/array.rbc
58
79
  - lib/active_support/core_ext/benchmark.rb
80
+ - lib/active_support/core_ext/benchmark.rbc
59
81
  - lib/active_support/core_ext/big_decimal/conversions.rb
82
+ - lib/active_support/core_ext/big_decimal/conversions.rbc
60
83
  - lib/active_support/core_ext/big_decimal.rb
84
+ - lib/active_support/core_ext/big_decimal.rbc
61
85
  - lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
86
+ - lib/active_support/core_ext/cgi/escape_skipping_slashes.rbc
62
87
  - lib/active_support/core_ext/cgi.rb
88
+ - lib/active_support/core_ext/cgi.rbc
63
89
  - lib/active_support/core_ext/class/attribute.rb
90
+ - lib/active_support/core_ext/class/attribute.rbc
64
91
  - lib/active_support/core_ext/class/attribute_accessors.rb
92
+ - lib/active_support/core_ext/class/attribute_accessors.rbc
65
93
  - lib/active_support/core_ext/class/delegating_attributes.rb
94
+ - lib/active_support/core_ext/class/delegating_attributes.rbc
66
95
  - lib/active_support/core_ext/class/inheritable_attributes.rb
96
+ - lib/active_support/core_ext/class/inheritable_attributes.rbc
67
97
  - lib/active_support/core_ext/class/subclasses.rb
98
+ - lib/active_support/core_ext/class/subclasses.rbc
68
99
  - lib/active_support/core_ext/class.rb
100
+ - lib/active_support/core_ext/class.rbc
69
101
  - lib/active_support/core_ext/date/acts_like.rb
102
+ - lib/active_support/core_ext/date/acts_like.rbc
70
103
  - lib/active_support/core_ext/date/calculations.rb
104
+ - lib/active_support/core_ext/date/calculations.rbc
71
105
  - lib/active_support/core_ext/date/conversions.rb
106
+ - lib/active_support/core_ext/date/conversions.rbc
72
107
  - lib/active_support/core_ext/date/freeze.rb
108
+ - lib/active_support/core_ext/date/freeze.rbc
73
109
  - lib/active_support/core_ext/date/zones.rb
110
+ - lib/active_support/core_ext/date/zones.rbc
74
111
  - lib/active_support/core_ext/date_time/acts_like.rb
112
+ - lib/active_support/core_ext/date_time/acts_like.rbc
75
113
  - lib/active_support/core_ext/date_time/calculations.rb
114
+ - lib/active_support/core_ext/date_time/calculations.rbc
76
115
  - lib/active_support/core_ext/date_time/conversions.rb
116
+ - lib/active_support/core_ext/date_time/conversions.rbc
77
117
  - lib/active_support/core_ext/date_time/zones.rb
118
+ - lib/active_support/core_ext/date_time/zones.rbc
78
119
  - lib/active_support/core_ext/enumerable.rb
120
+ - lib/active_support/core_ext/enumerable.rbc
79
121
  - lib/active_support/core_ext/exception.rb
122
+ - lib/active_support/core_ext/exception.rbc
80
123
  - lib/active_support/core_ext/file/atomic.rb
124
+ - lib/active_support/core_ext/file/atomic.rbc
81
125
  - lib/active_support/core_ext/file/path.rb
126
+ - lib/active_support/core_ext/file/path.rbc
82
127
  - lib/active_support/core_ext/file.rb
128
+ - lib/active_support/core_ext/file.rbc
83
129
  - lib/active_support/core_ext/float/rounding.rb
130
+ - lib/active_support/core_ext/float/rounding.rbc
84
131
  - lib/active_support/core_ext/float.rb
132
+ - lib/active_support/core_ext/float.rbc
85
133
  - lib/active_support/core_ext/hash/conversions.rb
134
+ - lib/active_support/core_ext/hash/conversions.rbc
86
135
  - lib/active_support/core_ext/hash/deep_merge.rb
136
+ - lib/active_support/core_ext/hash/deep_merge.rbc
87
137
  - lib/active_support/core_ext/hash/diff.rb
138
+ - lib/active_support/core_ext/hash/diff.rbc
88
139
  - lib/active_support/core_ext/hash/except.rb
140
+ - lib/active_support/core_ext/hash/except.rbc
89
141
  - lib/active_support/core_ext/hash/indifferent_access.rb
142
+ - lib/active_support/core_ext/hash/indifferent_access.rbc
90
143
  - lib/active_support/core_ext/hash/keys.rb
144
+ - lib/active_support/core_ext/hash/keys.rbc
91
145
  - lib/active_support/core_ext/hash/reverse_merge.rb
146
+ - lib/active_support/core_ext/hash/reverse_merge.rbc
92
147
  - lib/active_support/core_ext/hash/slice.rb
148
+ - lib/active_support/core_ext/hash/slice.rbc
93
149
  - lib/active_support/core_ext/hash.rb
150
+ - lib/active_support/core_ext/hash.rbc
94
151
  - lib/active_support/core_ext/integer/inflections.rb
152
+ - lib/active_support/core_ext/integer/inflections.rbc
95
153
  - lib/active_support/core_ext/integer/multiple.rb
154
+ - lib/active_support/core_ext/integer/multiple.rbc
96
155
  - lib/active_support/core_ext/integer/time.rb
156
+ - lib/active_support/core_ext/integer/time.rbc
97
157
  - lib/active_support/core_ext/integer.rb
158
+ - lib/active_support/core_ext/integer.rbc
98
159
  - lib/active_support/core_ext/kernel/agnostics.rb
160
+ - lib/active_support/core_ext/kernel/agnostics.rbc
99
161
  - lib/active_support/core_ext/kernel/debugger.rb
162
+ - lib/active_support/core_ext/kernel/debugger.rbc
100
163
  - lib/active_support/core_ext/kernel/reporting.rb
164
+ - lib/active_support/core_ext/kernel/reporting.rbc
101
165
  - lib/active_support/core_ext/kernel/requires.rb
166
+ - lib/active_support/core_ext/kernel/requires.rbc
102
167
  - lib/active_support/core_ext/kernel/singleton_class.rb
168
+ - lib/active_support/core_ext/kernel/singleton_class.rbc
103
169
  - lib/active_support/core_ext/kernel.rb
170
+ - lib/active_support/core_ext/kernel.rbc
104
171
  - lib/active_support/core_ext/load_error.rb
172
+ - lib/active_support/core_ext/load_error.rbc
105
173
  - lib/active_support/core_ext/logger.rb
174
+ - lib/active_support/core_ext/logger.rbc
106
175
  - lib/active_support/core_ext/module/aliasing.rb
176
+ - lib/active_support/core_ext/module/aliasing.rbc
107
177
  - lib/active_support/core_ext/module/anonymous.rb
178
+ - lib/active_support/core_ext/module/anonymous.rbc
108
179
  - lib/active_support/core_ext/module/attr_accessor_with_default.rb
180
+ - lib/active_support/core_ext/module/attr_accessor_with_default.rbc
109
181
  - lib/active_support/core_ext/module/attr_internal.rb
182
+ - lib/active_support/core_ext/module/attr_internal.rbc
110
183
  - lib/active_support/core_ext/module/attribute_accessors.rb
184
+ - lib/active_support/core_ext/module/attribute_accessors.rbc
111
185
  - lib/active_support/core_ext/module/delegation.rb
186
+ - lib/active_support/core_ext/module/delegation.rbc
112
187
  - lib/active_support/core_ext/module/deprecation.rb
188
+ - lib/active_support/core_ext/module/deprecation.rbc
113
189
  - lib/active_support/core_ext/module/introspection.rb
190
+ - lib/active_support/core_ext/module/introspection.rbc
114
191
  - lib/active_support/core_ext/module/method_names.rb
192
+ - lib/active_support/core_ext/module/method_names.rbc
115
193
  - lib/active_support/core_ext/module/reachable.rb
194
+ - lib/active_support/core_ext/module/reachable.rbc
116
195
  - lib/active_support/core_ext/module/remove_method.rb
196
+ - lib/active_support/core_ext/module/remove_method.rbc
117
197
  - lib/active_support/core_ext/module/synchronization.rb
198
+ - lib/active_support/core_ext/module/synchronization.rbc
118
199
  - lib/active_support/core_ext/module.rb
200
+ - lib/active_support/core_ext/module.rbc
119
201
  - lib/active_support/core_ext/name_error.rb
202
+ - lib/active_support/core_ext/name_error.rbc
120
203
  - lib/active_support/core_ext/numeric/bytes.rb
204
+ - lib/active_support/core_ext/numeric/bytes.rbc
121
205
  - lib/active_support/core_ext/numeric/time.rb
206
+ - lib/active_support/core_ext/numeric/time.rbc
122
207
  - lib/active_support/core_ext/numeric.rb
208
+ - lib/active_support/core_ext/numeric.rbc
123
209
  - lib/active_support/core_ext/object/acts_like.rb
210
+ - lib/active_support/core_ext/object/acts_like.rbc
124
211
  - lib/active_support/core_ext/object/blank.rb
212
+ - lib/active_support/core_ext/object/blank.rbc
125
213
  - lib/active_support/core_ext/object/conversions.rb
214
+ - lib/active_support/core_ext/object/conversions.rbc
126
215
  - lib/active_support/core_ext/object/duplicable.rb
216
+ - lib/active_support/core_ext/object/duplicable.rbc
127
217
  - lib/active_support/core_ext/object/instance_variables.rb
218
+ - lib/active_support/core_ext/object/instance_variables.rbc
128
219
  - lib/active_support/core_ext/object/returning.rb
220
+ - lib/active_support/core_ext/object/returning.rbc
129
221
  - lib/active_support/core_ext/object/to_json.rb
222
+ - lib/active_support/core_ext/object/to_json.rbc
130
223
  - lib/active_support/core_ext/object/to_param.rb
224
+ - lib/active_support/core_ext/object/to_param.rbc
131
225
  - lib/active_support/core_ext/object/to_query.rb
226
+ - lib/active_support/core_ext/object/to_query.rbc
132
227
  - lib/active_support/core_ext/object/try.rb
228
+ - lib/active_support/core_ext/object/try.rbc
133
229
  - lib/active_support/core_ext/object/with_options.rb
230
+ - lib/active_support/core_ext/object/with_options.rbc
134
231
  - lib/active_support/core_ext/object.rb
232
+ - lib/active_support/core_ext/object.rbc
135
233
  - lib/active_support/core_ext/proc.rb
234
+ - lib/active_support/core_ext/proc.rbc
136
235
  - lib/active_support/core_ext/process/daemon.rb
236
+ - lib/active_support/core_ext/process/daemon.rbc
137
237
  - lib/active_support/core_ext/process.rb
238
+ - lib/active_support/core_ext/process.rbc
138
239
  - lib/active_support/core_ext/range/blockless_step.rb
240
+ - lib/active_support/core_ext/range/blockless_step.rbc
139
241
  - lib/active_support/core_ext/range/conversions.rb
242
+ - lib/active_support/core_ext/range/conversions.rbc
140
243
  - lib/active_support/core_ext/range/include_range.rb
244
+ - lib/active_support/core_ext/range/include_range.rbc
141
245
  - lib/active_support/core_ext/range/overlaps.rb
246
+ - lib/active_support/core_ext/range/overlaps.rbc
142
247
  - lib/active_support/core_ext/range.rb
248
+ - lib/active_support/core_ext/range.rbc
143
249
  - lib/active_support/core_ext/regexp.rb
250
+ - lib/active_support/core_ext/regexp.rbc
144
251
  - lib/active_support/core_ext/rexml.rb
252
+ - lib/active_support/core_ext/rexml.rbc
145
253
  - lib/active_support/core_ext/string/access.rb
254
+ - lib/active_support/core_ext/string/access.rbc
146
255
  - lib/active_support/core_ext/string/behavior.rb
256
+ - lib/active_support/core_ext/string/behavior.rbc
147
257
  - lib/active_support/core_ext/string/conversions.rb
258
+ - lib/active_support/core_ext/string/conversions.rbc
148
259
  - lib/active_support/core_ext/string/encoding.rb
260
+ - lib/active_support/core_ext/string/encoding.rbc
149
261
  - lib/active_support/core_ext/string/exclude.rb
262
+ - lib/active_support/core_ext/string/exclude.rbc
150
263
  - lib/active_support/core_ext/string/filters.rb
264
+ - lib/active_support/core_ext/string/filters.rbc
151
265
  - lib/active_support/core_ext/string/inflections.rb
266
+ - lib/active_support/core_ext/string/inflections.rbc
152
267
  - lib/active_support/core_ext/string/interpolation.rb
268
+ - lib/active_support/core_ext/string/interpolation.rbc
153
269
  - lib/active_support/core_ext/string/multibyte.rb
270
+ - lib/active_support/core_ext/string/multibyte.rbc
154
271
  - lib/active_support/core_ext/string/output_safety.rb
272
+ - lib/active_support/core_ext/string/output_safety.rbc
155
273
  - lib/active_support/core_ext/string/starts_ends_with.rb
274
+ - lib/active_support/core_ext/string/starts_ends_with.rbc
156
275
  - lib/active_support/core_ext/string/strip.rb
276
+ - lib/active_support/core_ext/string/strip.rbc
157
277
  - lib/active_support/core_ext/string/xchar.rb
278
+ - lib/active_support/core_ext/string/xchar.rbc
158
279
  - lib/active_support/core_ext/string.rb
280
+ - lib/active_support/core_ext/string.rbc
159
281
  - lib/active_support/core_ext/time/acts_like.rb
282
+ - lib/active_support/core_ext/time/acts_like.rbc
160
283
  - lib/active_support/core_ext/time/calculations.rb
284
+ - lib/active_support/core_ext/time/calculations.rbc
161
285
  - lib/active_support/core_ext/time/conversions.rb
286
+ - lib/active_support/core_ext/time/conversions.rbc
162
287
  - lib/active_support/core_ext/time/marshal.rb
288
+ - lib/active_support/core_ext/time/marshal.rbc
163
289
  - lib/active_support/core_ext/time/publicize_conversion_methods.rb
290
+ - lib/active_support/core_ext/time/publicize_conversion_methods.rbc
164
291
  - lib/active_support/core_ext/time/zones.rb
292
+ - lib/active_support/core_ext/time/zones.rbc
165
293
  - lib/active_support/core_ext/uri.rb
294
+ - lib/active_support/core_ext/uri.rbc
166
295
  - lib/active_support/core_ext.rb
296
+ - lib/active_support/core_ext.rbc
167
297
  - lib/active_support/dependencies/autoload.rb
298
+ - lib/active_support/dependencies/autoload.rbc
168
299
  - lib/active_support/dependencies.rb
300
+ - lib/active_support/dependencies.rbc
169
301
  - lib/active_support/deprecation/behaviors.rb
302
+ - lib/active_support/deprecation/behaviors.rbc
170
303
  - lib/active_support/deprecation/method_wrappers.rb
304
+ - lib/active_support/deprecation/method_wrappers.rbc
171
305
  - lib/active_support/deprecation/proxy_wrappers.rb
306
+ - lib/active_support/deprecation/proxy_wrappers.rbc
172
307
  - lib/active_support/deprecation/reporting.rb
308
+ - lib/active_support/deprecation/reporting.rbc
173
309
  - lib/active_support/deprecation.rb
310
+ - lib/active_support/deprecation.rbc
174
311
  - lib/active_support/descendants_tracker.rb
312
+ - lib/active_support/descendants_tracker.rbc
175
313
  - lib/active_support/duration.rb
314
+ - lib/active_support/duration.rbc
176
315
  - lib/active_support/file_update_checker.rb
316
+ - lib/active_support/file_update_checker.rbc
177
317
  - lib/active_support/gzip.rb
178
318
  - lib/active_support/hash_with_indifferent_access.rb
319
+ - lib/active_support/hash_with_indifferent_access.rbc
179
320
  - lib/active_support/i18n.rb
321
+ - lib/active_support/i18n.rbc
180
322
  - lib/active_support/i18n_railtie.rb
323
+ - lib/active_support/i18n_railtie.rbc
181
324
  - lib/active_support/inflections.rb
325
+ - lib/active_support/inflections.rbc
182
326
  - lib/active_support/inflector/inflections.rb
327
+ - lib/active_support/inflector/inflections.rbc
183
328
  - lib/active_support/inflector/methods.rb
329
+ - lib/active_support/inflector/methods.rbc
184
330
  - lib/active_support/inflector/transliterate.rb
331
+ - lib/active_support/inflector/transliterate.rbc
185
332
  - lib/active_support/inflector.rb
333
+ - lib/active_support/inflector.rbc
186
334
  - lib/active_support/json/backends/jsongem.rb
187
335
  - lib/active_support/json/backends/yajl.rb
188
336
  - lib/active_support/json/backends/yaml.rb
189
337
  - lib/active_support/json/decoding.rb
338
+ - lib/active_support/json/decoding.rbc
190
339
  - lib/active_support/json/encoding.rb
340
+ - lib/active_support/json/encoding.rbc
191
341
  - lib/active_support/json/variable.rb
342
+ - lib/active_support/json/variable.rbc
192
343
  - lib/active_support/json.rb
344
+ - lib/active_support/json.rbc
193
345
  - lib/active_support/lazy_load_hooks.rb
346
+ - lib/active_support/lazy_load_hooks.rbc
194
347
  - lib/active_support/locale/en.yml
195
348
  - lib/active_support/log_subscriber/test_helper.rb
196
349
  - lib/active_support/log_subscriber.rb
350
+ - lib/active_support/log_subscriber.rbc
197
351
  - lib/active_support/memoizable.rb
352
+ - lib/active_support/memoizable.rbc
198
353
  - lib/active_support/message_encryptor.rb
199
354
  - lib/active_support/message_verifier.rb
200
355
  - lib/active_support/multibyte/chars.rb
201
356
  - lib/active_support/multibyte/exceptions.rb
202
357
  - lib/active_support/multibyte/unicode.rb
203
358
  - lib/active_support/multibyte/utils.rb
359
+ - lib/active_support/multibyte/utils.rbc
204
360
  - lib/active_support/multibyte.rb
361
+ - lib/active_support/multibyte.rbc
205
362
  - lib/active_support/notifications/fanout.rb
363
+ - lib/active_support/notifications/fanout.rbc
206
364
  - lib/active_support/notifications/instrumenter.rb
365
+ - lib/active_support/notifications/instrumenter.rbc
207
366
  - lib/active_support/notifications.rb
367
+ - lib/active_support/notifications.rbc
208
368
  - lib/active_support/option_merger.rb
369
+ - lib/active_support/option_merger.rbc
209
370
  - lib/active_support/ordered_hash.rb
371
+ - lib/active_support/ordered_hash.rbc
210
372
  - lib/active_support/ordered_options.rb
373
+ - lib/active_support/ordered_options.rbc
211
374
  - lib/active_support/railtie.rb
375
+ - lib/active_support/railtie.rbc
212
376
  - lib/active_support/rescuable.rb
377
+ - lib/active_support/rescuable.rbc
213
378
  - lib/active_support/ruby/shim.rb
379
+ - lib/active_support/ruby/shim.rbc
214
380
  - lib/active_support/secure_random.rb
381
+ - lib/active_support/secure_random.rbc
215
382
  - lib/active_support/string_inquirer.rb
383
+ - lib/active_support/string_inquirer.rbc
216
384
  - lib/active_support/test_case.rb
385
+ - lib/active_support/test_case.rbc
217
386
  - lib/active_support/testing/assertions.rb
387
+ - lib/active_support/testing/assertions.rbc
218
388
  - lib/active_support/testing/declarative.rb
389
+ - lib/active_support/testing/declarative.rbc
219
390
  - lib/active_support/testing/default.rb
391
+ - lib/active_support/testing/default.rbc
220
392
  - lib/active_support/testing/deprecation.rb
393
+ - lib/active_support/testing/deprecation.rbc
221
394
  - lib/active_support/testing/isolation.rb
395
+ - lib/active_support/testing/isolation.rbc
222
396
  - lib/active_support/testing/pending.rb
397
+ - lib/active_support/testing/pending.rbc
223
398
  - lib/active_support/testing/performance.rb
224
399
  - lib/active_support/testing/setup_and_teardown.rb
400
+ - lib/active_support/testing/setup_and_teardown.rbc
225
401
  - lib/active_support/time/autoload.rb
226
402
  - lib/active_support/time.rb
403
+ - lib/active_support/time.rbc
227
404
  - lib/active_support/time_with_zone.rb
405
+ - lib/active_support/time_with_zone.rbc
228
406
  - lib/active_support/values/time_zone.rb
407
+ - lib/active_support/values/time_zone.rbc
229
408
  - lib/active_support/values/unicode_tables.dat
230
409
  - lib/active_support/version.rb
410
+ - lib/active_support/version.rbc
231
411
  - lib/active_support/whiny_nil.rb
412
+ - lib/active_support/whiny_nil.rbc
232
413
  - lib/active_support/xml_mini/jdom.rb
233
414
  - lib/active_support/xml_mini/libxml.rb
234
415
  - lib/active_support/xml_mini/libxmlsax.rb
235
416
  - lib/active_support/xml_mini/nokogiri.rb
236
417
  - lib/active_support/xml_mini/nokogirisax.rb
237
418
  - lib/active_support/xml_mini/rexml.rb
419
+ - lib/active_support/xml_mini/rexml.rbc
238
420
  - lib/active_support/xml_mini.rb
421
+ - lib/active_support/xml_mini.rbc
239
422
  - lib/active_support.rb
423
+ - lib/active_support.rbc
240
424
  has_rdoc: true
241
425
  homepage: http://www.rubyonrails.org
242
426
  licenses: []
@@ -260,16 +444,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
260
444
  required_rubygems_version: !ruby/object:Gem::Requirement
261
445
  none: false
262
446
  requirements:
263
- - - ">="
447
+ - - ">"
264
448
  - !ruby/object:Gem::Version
265
- hash: 3
449
+ hash: 25
266
450
  segments:
267
- - 0
268
- version: "0"
451
+ - 1
452
+ - 3
453
+ - 1
454
+ version: 1.3.1
269
455
  requirements: []
270
456
 
271
457
  rubyforge_project: activesupport
272
- rubygems_version: 1.6.1
458
+ rubygems_version: 1.6.2
273
459
  signing_key:
274
460
  specification_version: 3
275
461
  summary: A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.