activesupport 1.2.4 → 8.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (309) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +505 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.rdoc +40 -0
  5. data/lib/active_support/actionable_error.rb +50 -0
  6. data/lib/active_support/all.rb +5 -0
  7. data/lib/active_support/array_inquirer.rb +50 -0
  8. data/lib/active_support/backtrace_cleaner.rb +234 -0
  9. data/lib/active_support/benchmark.rb +21 -0
  10. data/lib/active_support/benchmarkable.rb +53 -0
  11. data/lib/active_support/broadcast_logger.rb +238 -0
  12. data/lib/active_support/builder.rb +8 -0
  13. data/lib/active_support/cache/coder.rb +153 -0
  14. data/lib/active_support/cache/entry.rb +134 -0
  15. data/lib/active_support/cache/file_store.rb +244 -0
  16. data/lib/active_support/cache/mem_cache_store.rb +288 -0
  17. data/lib/active_support/cache/memory_store.rb +264 -0
  18. data/lib/active_support/cache/null_store.rb +62 -0
  19. data/lib/active_support/cache/redis_cache_store.rb +498 -0
  20. data/lib/active_support/cache/serializer_with_fallback.rb +152 -0
  21. data/lib/active_support/cache/strategy/local_cache.rb +246 -0
  22. data/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
  23. data/lib/active_support/cache.rb +1170 -0
  24. data/lib/active_support/callbacks.rb +960 -0
  25. data/lib/active_support/class_attribute.rb +33 -0
  26. data/lib/active_support/code_generator.rb +79 -0
  27. data/lib/active_support/concern.rb +217 -0
  28. data/lib/active_support/concurrency/load_interlock_aware_monitor.rb +18 -0
  29. data/lib/active_support/concurrency/null_lock.rb +13 -0
  30. data/lib/active_support/concurrency/share_lock.rb +225 -0
  31. data/lib/active_support/concurrency/thread_monitor.rb +55 -0
  32. data/lib/active_support/configurable.rb +193 -0
  33. data/lib/active_support/configuration_file.rb +60 -0
  34. data/lib/active_support/continuous_integration.rb +145 -0
  35. data/lib/active_support/core_ext/array/access.rb +100 -0
  36. data/lib/active_support/core_ext/array/conversions.rb +209 -26
  37. data/lib/active_support/core_ext/array/extract.rb +21 -0
  38. data/lib/active_support/core_ext/array/extract_options.rb +31 -0
  39. data/lib/active_support/core_ext/array/grouping.rb +109 -0
  40. data/lib/active_support/core_ext/array/inquiry.rb +19 -0
  41. data/lib/active_support/core_ext/array/wrap.rb +48 -0
  42. data/lib/active_support/core_ext/array.rb +8 -4
  43. data/lib/active_support/core_ext/benchmark.rb +6 -0
  44. data/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
  45. data/lib/active_support/core_ext/big_decimal.rb +3 -0
  46. data/lib/active_support/core_ext/class/attribute.rb +137 -0
  47. data/lib/active_support/core_ext/class/attribute_accessors.rb +6 -0
  48. data/lib/active_support/core_ext/class/subclasses.rb +24 -0
  49. data/lib/active_support/core_ext/class.rb +4 -0
  50. data/lib/active_support/core_ext/date/acts_like.rb +10 -0
  51. data/lib/active_support/core_ext/date/blank.rb +18 -0
  52. data/lib/active_support/core_ext/date/calculations.rb +161 -0
  53. data/lib/active_support/core_ext/date/conversions.rb +95 -28
  54. data/lib/active_support/core_ext/date/zones.rb +8 -0
  55. data/lib/active_support/core_ext/date.rb +6 -5
  56. data/lib/active_support/core_ext/date_and_time/calculations.rb +374 -0
  57. data/lib/active_support/core_ext/date_and_time/compatibility.rb +23 -0
  58. data/lib/active_support/core_ext/date_and_time/zones.rb +40 -0
  59. data/lib/active_support/core_ext/date_time/acts_like.rb +16 -0
  60. data/lib/active_support/core_ext/date_time/blank.rb +18 -0
  61. data/lib/active_support/core_ext/date_time/calculations.rb +215 -0
  62. data/lib/active_support/core_ext/date_time/compatibility.rb +16 -0
  63. data/lib/active_support/core_ext/date_time/conversions.rb +108 -0
  64. data/lib/active_support/core_ext/date_time.rb +7 -0
  65. data/lib/active_support/core_ext/digest/uuid.rb +76 -0
  66. data/lib/active_support/core_ext/digest.rb +3 -0
  67. data/lib/active_support/core_ext/enumerable.rb +277 -7
  68. data/lib/active_support/core_ext/erb/util.rb +201 -0
  69. data/lib/active_support/core_ext/file/atomic.rb +72 -0
  70. data/lib/active_support/core_ext/file.rb +3 -0
  71. data/lib/active_support/core_ext/hash/conversions.rb +262 -0
  72. data/lib/active_support/core_ext/hash/deep_merge.rb +43 -0
  73. data/lib/active_support/core_ext/hash/deep_transform_values.rb +46 -0
  74. data/lib/active_support/core_ext/hash/except.rb +12 -0
  75. data/lib/active_support/core_ext/hash/indifferent_access.rb +19 -55
  76. data/lib/active_support/core_ext/hash/keys.rb +134 -44
  77. data/lib/active_support/core_ext/hash/reverse_merge.rb +22 -22
  78. data/lib/active_support/core_ext/hash/slice.rb +27 -0
  79. data/lib/active_support/core_ext/hash.rb +9 -8
  80. data/lib/active_support/core_ext/integer/inflections.rb +29 -13
  81. data/lib/active_support/core_ext/integer/multiple.rb +12 -0
  82. data/lib/active_support/core_ext/integer/time.rb +22 -0
  83. data/lib/active_support/core_ext/integer.rb +4 -6
  84. data/lib/active_support/core_ext/kernel/concern.rb +14 -0
  85. data/lib/active_support/core_ext/kernel/reporting.rb +45 -0
  86. data/lib/active_support/core_ext/kernel/singleton_class.rb +8 -0
  87. data/lib/active_support/core_ext/kernel.rb +4 -78
  88. data/lib/active_support/core_ext/load_error.rb +6 -35
  89. data/lib/active_support/core_ext/module/aliasing.rb +31 -0
  90. data/lib/active_support/core_ext/module/anonymous.rb +30 -0
  91. data/lib/active_support/core_ext/module/attr_internal.rb +48 -0
  92. data/lib/active_support/core_ext/module/attribute_accessors.rb +214 -0
  93. data/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +175 -0
  94. data/lib/active_support/core_ext/module/concerning.rb +140 -0
  95. data/lib/active_support/core_ext/module/delegation.rb +225 -0
  96. data/lib/active_support/core_ext/module/deprecation.rb +25 -0
  97. data/lib/active_support/core_ext/module/introspection.rb +65 -0
  98. data/lib/active_support/core_ext/module/redefine_method.rb +40 -0
  99. data/lib/active_support/core_ext/module/remove_method.rb +17 -0
  100. data/lib/active_support/core_ext/module.rb +13 -0
  101. data/lib/active_support/core_ext/name_error.rb +59 -0
  102. data/lib/active_support/core_ext/numeric/bytes.rb +73 -42
  103. data/lib/active_support/core_ext/numeric/conversions.rb +145 -0
  104. data/lib/active_support/core_ext/numeric/time.rb +64 -57
  105. data/lib/active_support/core_ext/numeric.rb +4 -6
  106. data/lib/active_support/core_ext/object/acts_like.rb +45 -0
  107. data/lib/active_support/core_ext/object/blank.rb +199 -0
  108. data/lib/active_support/core_ext/object/conversions.rb +6 -0
  109. data/lib/active_support/core_ext/object/deep_dup.rb +71 -0
  110. data/lib/active_support/core_ext/object/duplicable.rb +69 -0
  111. data/lib/active_support/core_ext/object/inclusion.rb +37 -0
  112. data/lib/active_support/core_ext/object/instance_variables.rb +32 -0
  113. data/lib/active_support/core_ext/object/json.rb +267 -0
  114. data/lib/active_support/core_ext/object/to_param.rb +3 -0
  115. data/lib/active_support/core_ext/object/to_query.rb +93 -0
  116. data/lib/active_support/core_ext/object/try.rb +158 -0
  117. data/lib/active_support/core_ext/object/with.rb +46 -0
  118. data/lib/active_support/core_ext/object/with_options.rb +101 -0
  119. data/lib/active_support/core_ext/object.rb +17 -0
  120. data/lib/active_support/core_ext/pathname/blank.rb +20 -0
  121. data/lib/active_support/core_ext/pathname/existence.rb +23 -0
  122. data/lib/active_support/core_ext/pathname.rb +4 -0
  123. data/lib/active_support/core_ext/range/compare_range.rb +57 -0
  124. data/lib/active_support/core_ext/range/conversions.rb +58 -17
  125. data/lib/active_support/core_ext/range/overlap.rb +40 -0
  126. data/lib/active_support/core_ext/range/sole.rb +17 -0
  127. data/lib/active_support/core_ext/range.rb +5 -4
  128. data/lib/active_support/core_ext/regexp.rb +14 -0
  129. data/lib/active_support/core_ext/securerandom.rb +57 -0
  130. data/lib/active_support/core_ext/string/access.rb +93 -56
  131. data/lib/active_support/core_ext/string/behavior.rb +8 -0
  132. data/lib/active_support/core_ext/string/conversions.rb +57 -16
  133. data/lib/active_support/core_ext/string/exclude.rb +13 -0
  134. data/lib/active_support/core_ext/string/filters.rb +151 -0
  135. data/lib/active_support/core_ext/string/indent.rb +45 -0
  136. data/lib/active_support/core_ext/string/inflections.rb +297 -54
  137. data/lib/active_support/core_ext/string/inquiry.rb +16 -0
  138. data/lib/active_support/core_ext/string/multibyte.rb +67 -0
  139. data/lib/active_support/core_ext/string/output_safety.rb +235 -0
  140. data/lib/active_support/core_ext/string/starts_ends_with.rb +4 -18
  141. data/lib/active_support/core_ext/string/strip.rb +27 -0
  142. data/lib/active_support/core_ext/string/zones.rb +16 -0
  143. data/lib/active_support/core_ext/string.rb +14 -10
  144. data/lib/active_support/core_ext/symbol/starts_ends_with.rb +6 -0
  145. data/lib/active_support/core_ext/symbol.rb +3 -0
  146. data/lib/active_support/core_ext/thread/backtrace/location.rb +7 -0
  147. data/lib/active_support/core_ext/time/acts_like.rb +10 -0
  148. data/lib/active_support/core_ext/time/calculations.rb +358 -153
  149. data/lib/active_support/core_ext/time/compatibility.rb +15 -0
  150. data/lib/active_support/core_ext/time/conversions.rb +69 -30
  151. data/lib/active_support/core_ext/time/zones.rb +97 -0
  152. data/lib/active_support/core_ext/time.rb +6 -6
  153. data/lib/active_support/core_ext.rb +5 -1
  154. data/lib/active_support/current_attributes/test_helper.rb +13 -0
  155. data/lib/active_support/current_attributes.rb +243 -0
  156. data/lib/active_support/deep_mergeable.rb +53 -0
  157. data/lib/active_support/delegation.rb +183 -0
  158. data/lib/active_support/dependencies/autoload.rb +72 -0
  159. data/lib/active_support/dependencies/interlock.rb +55 -0
  160. data/lib/active_support/dependencies/require_dependency.rb +28 -0
  161. data/lib/active_support/dependencies.rb +84 -222
  162. data/lib/active_support/deprecation/behaviors.rb +148 -0
  163. data/lib/active_support/deprecation/constant_accessor.rb +74 -0
  164. data/lib/active_support/deprecation/deprecators.rb +104 -0
  165. data/lib/active_support/deprecation/disallowed.rb +54 -0
  166. data/lib/active_support/deprecation/method_wrappers.rb +68 -0
  167. data/lib/active_support/deprecation/proxy_wrappers.rb +189 -0
  168. data/lib/active_support/deprecation/reporting.rb +162 -0
  169. data/lib/active_support/deprecation.rb +81 -0
  170. data/lib/active_support/deprecator.rb +7 -0
  171. data/lib/active_support/descendants_tracker.rb +112 -0
  172. data/lib/active_support/digest.rb +22 -0
  173. data/lib/active_support/duration/iso8601_parser.rb +123 -0
  174. data/lib/active_support/duration/iso8601_serializer.rb +64 -0
  175. data/lib/active_support/duration.rb +524 -0
  176. data/lib/active_support/editor.rb +70 -0
  177. data/lib/active_support/encrypted_configuration.rb +126 -0
  178. data/lib/active_support/encrypted_file.rb +133 -0
  179. data/lib/active_support/environment_inquirer.rb +40 -0
  180. data/lib/active_support/error_reporter/test_helper.rb +15 -0
  181. data/lib/active_support/error_reporter.rb +318 -0
  182. data/lib/active_support/event_reporter/test_helper.rb +32 -0
  183. data/lib/active_support/event_reporter.rb +592 -0
  184. data/lib/active_support/evented_file_update_checker.rb +185 -0
  185. data/lib/active_support/execution_context/test_helper.rb +13 -0
  186. data/lib/active_support/execution_context.rb +110 -0
  187. data/lib/active_support/execution_wrapper.rb +150 -0
  188. data/lib/active_support/executor/test_helper.rb +7 -0
  189. data/lib/active_support/executor.rb +8 -0
  190. data/lib/active_support/file_update_checker.rb +166 -0
  191. data/lib/active_support/fork_tracker.rb +43 -0
  192. data/lib/active_support/gem_version.rb +17 -0
  193. data/lib/active_support/gzip.rb +41 -0
  194. data/lib/active_support/hash_with_indifferent_access.rb +464 -0
  195. data/lib/active_support/html_safe_translation.rb +56 -0
  196. data/lib/active_support/i18n.rb +17 -0
  197. data/lib/active_support/i18n_railtie.rb +140 -0
  198. data/lib/active_support/inflections.rb +68 -49
  199. data/lib/active_support/inflector/inflections.rb +290 -0
  200. data/lib/active_support/inflector/methods.rb +387 -0
  201. data/lib/active_support/inflector/transliterate.rb +147 -0
  202. data/lib/active_support/inflector.rb +7 -164
  203. data/lib/active_support/isolated_execution_state.rb +76 -0
  204. data/lib/active_support/json/decoding.rb +78 -0
  205. data/lib/active_support/json/encoding.rb +256 -0
  206. data/lib/active_support/json.rb +4 -0
  207. data/lib/active_support/key_generator.rb +66 -0
  208. data/lib/active_support/lazy_load_hooks.rb +107 -0
  209. data/lib/active_support/locale/en.rb +33 -0
  210. data/lib/active_support/locale/en.yml +141 -0
  211. data/lib/active_support/log_subscriber/test_helper.rb +106 -0
  212. data/lib/active_support/log_subscriber.rb +188 -0
  213. data/lib/active_support/logger.rb +55 -0
  214. data/lib/active_support/logger_silence.rb +21 -0
  215. data/lib/active_support/logger_thread_safe_level.rb +50 -0
  216. data/lib/active_support/message_encryptor.rb +374 -0
  217. data/lib/active_support/message_encryptors.rb +193 -0
  218. data/lib/active_support/message_pack/cache_serializer.rb +23 -0
  219. data/lib/active_support/message_pack/extensions.rb +310 -0
  220. data/lib/active_support/message_pack/serializer.rb +63 -0
  221. data/lib/active_support/message_pack.rb +50 -0
  222. data/lib/active_support/message_verifier.rb +377 -0
  223. data/lib/active_support/message_verifiers.rb +189 -0
  224. data/lib/active_support/messages/codec.rb +65 -0
  225. data/lib/active_support/messages/metadata.rb +146 -0
  226. data/lib/active_support/messages/rotation_configuration.rb +23 -0
  227. data/lib/active_support/messages/rotation_coordinator.rb +102 -0
  228. data/lib/active_support/messages/rotator.rb +69 -0
  229. data/lib/active_support/messages/serializer_with_fallback.rb +158 -0
  230. data/lib/active_support/multibyte/chars.rb +188 -0
  231. data/lib/active_support/multibyte/unicode.rb +42 -0
  232. data/lib/active_support/multibyte.rb +27 -0
  233. data/lib/active_support/notifications/fanout.rb +467 -0
  234. data/lib/active_support/notifications/instrumenter.rb +240 -0
  235. data/lib/active_support/notifications.rb +281 -0
  236. data/lib/active_support/number_helper/number_converter.rb +190 -0
  237. data/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
  238. data/lib/active_support/number_helper/number_to_delimited_converter.rb +30 -0
  239. data/lib/active_support/number_helper/number_to_human_converter.rb +69 -0
  240. data/lib/active_support/number_helper/number_to_human_size_converter.rb +60 -0
  241. data/lib/active_support/number_helper/number_to_percentage_converter.rb +16 -0
  242. data/lib/active_support/number_helper/number_to_phone_converter.rb +60 -0
  243. data/lib/active_support/number_helper/number_to_rounded_converter.rb +59 -0
  244. data/lib/active_support/number_helper/rounding_helper.rb +46 -0
  245. data/lib/active_support/number_helper.rb +479 -0
  246. data/lib/active_support/option_merger.rb +38 -0
  247. data/lib/active_support/ordered_hash.rb +50 -0
  248. data/lib/active_support/ordered_options.rb +141 -25
  249. data/lib/active_support/parameter_filter.rb +157 -0
  250. data/lib/active_support/rails.rb +26 -0
  251. data/lib/active_support/railtie.rb +180 -0
  252. data/lib/active_support/reloader.rb +138 -0
  253. data/lib/active_support/rescuable.rb +176 -0
  254. data/lib/active_support/secure_compare_rotator.rb +58 -0
  255. data/lib/active_support/security_utils.rb +38 -0
  256. data/lib/active_support/string_inquirer.rb +35 -0
  257. data/lib/active_support/structured_event_subscriber.rb +99 -0
  258. data/lib/active_support/subscriber.rb +141 -0
  259. data/lib/active_support/syntax_error_proxy.rb +67 -0
  260. data/lib/active_support/tagged_logging.rb +157 -0
  261. data/lib/active_support/test_case.rb +365 -0
  262. data/lib/active_support/testing/assertions.rb +369 -0
  263. data/lib/active_support/testing/autorun.rb +10 -0
  264. data/lib/active_support/testing/constant_lookup.rb +51 -0
  265. data/lib/active_support/testing/constant_stubbing.rb +54 -0
  266. data/lib/active_support/testing/declarative.rb +28 -0
  267. data/lib/active_support/testing/deprecation.rb +82 -0
  268. data/lib/active_support/testing/error_reporter_assertions.rb +124 -0
  269. data/lib/active_support/testing/event_reporter_assertions.rb +227 -0
  270. data/lib/active_support/testing/file_fixtures.rb +38 -0
  271. data/lib/active_support/testing/isolation.rb +121 -0
  272. data/lib/active_support/testing/method_call_assertions.rb +69 -0
  273. data/lib/active_support/testing/notification_assertions.rb +92 -0
  274. data/lib/active_support/testing/parallelization/server.rb +98 -0
  275. data/lib/active_support/testing/parallelization/worker.rb +107 -0
  276. data/lib/active_support/testing/parallelization.rb +79 -0
  277. data/lib/active_support/testing/parallelize_executor.rb +81 -0
  278. data/lib/active_support/testing/setup_and_teardown.rb +57 -0
  279. data/lib/active_support/testing/stream.rb +41 -0
  280. data/lib/active_support/testing/tagged_logging.rb +27 -0
  281. data/lib/active_support/testing/tests_without_assertions.rb +19 -0
  282. data/lib/active_support/testing/time_helpers.rb +273 -0
  283. data/lib/active_support/time.rb +20 -0
  284. data/lib/active_support/time_with_zone.rb +613 -0
  285. data/lib/active_support/values/time_zone.rb +599 -158
  286. data/lib/active_support/version.rb +7 -6
  287. data/lib/active_support/xml_mini/jdom.rb +175 -0
  288. data/lib/active_support/xml_mini/libxml.rb +80 -0
  289. data/lib/active_support/xml_mini/libxmlsax.rb +83 -0
  290. data/lib/active_support/xml_mini/nokogiri.rb +83 -0
  291. data/lib/active_support/xml_mini/nokogirisax.rb +86 -0
  292. data/lib/active_support/xml_mini/rexml.rb +137 -0
  293. data/lib/active_support/xml_mini.rb +212 -0
  294. data/lib/active_support.rb +122 -10
  295. metadata +524 -93
  296. data/CHANGELOG +0 -283
  297. data/lib/active_support/binding_of_caller.rb +0 -84
  298. data/lib/active_support/breakpoint.rb +0 -523
  299. data/lib/active_support/class_attribute_accessors.rb +0 -57
  300. data/lib/active_support/class_inheritable_attributes.rb +0 -117
  301. data/lib/active_support/clean_logger.rb +0 -36
  302. data/lib/active_support/core_ext/blank.rb +0 -38
  303. data/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb +0 -14
  304. data/lib/active_support/core_ext/cgi.rb +0 -5
  305. data/lib/active_support/core_ext/exception.rb +0 -29
  306. data/lib/active_support/core_ext/integer/even_odd.rb +0 -24
  307. data/lib/active_support/core_ext/object_and_class.rb +0 -44
  308. data/lib/active_support/module_attribute_accessors.rb +0 -57
  309. data/lib/active_support/whiny_nil.rb +0 -38
metadata CHANGED
@@ -1,98 +1,529 @@
1
- --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.11
3
- specification_version: 1
1
+ --- !ruby/object:Gem::Specification
4
2
  name: activesupport
5
- version: !ruby/object:Gem::Version
6
- version: 1.2.4
7
- date: 2005-12-07 00:00:00 -06:00
8
- summary: Support and utility classes used by the Rails framework.
9
- require_paths:
10
- - lib
11
- email: david@loudthinking.com
12
- homepage: http://www.rubyonrails.org
13
- rubyforge_project: activesupport
14
- description: Utility library which carries commonly used classes and goodies from the Rails framework
15
- autorequire:
16
- default_executable:
17
- bindir: bin
18
- has_rdoc: true
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- -
22
- - ">"
23
- - !ruby/object:Gem::Version
24
- version: 0.0.0
25
- version:
3
+ version: !ruby/object:Gem::Version
4
+ version: 8.1.2
26
5
  platform: ruby
27
- signing_key:
28
- cert_chain:
29
- authors:
30
- - David Heinemeier Hansson
31
- files:
32
- - CHANGELOG
33
- - lib/active_support
34
- - lib/active_support.rb
35
- - lib/active_support/binding_of_caller.rb
36
- - lib/active_support/breakpoint.rb
37
- - lib/active_support/class_attribute_accessors.rb
38
- - lib/active_support/class_inheritable_attributes.rb
39
- - lib/active_support/clean_logger.rb
40
- - lib/active_support/core_ext
41
- - lib/active_support/core_ext.rb
42
- - lib/active_support/dependencies.rb
43
- - lib/active_support/inflections.rb
44
- - lib/active_support/inflector.rb
45
- - lib/active_support/module_attribute_accessors.rb
46
- - lib/active_support/ordered_options.rb
47
- - lib/active_support/values
48
- - lib/active_support/version.rb
49
- - lib/active_support/whiny_nil.rb
50
- - lib/active_support/core_ext/array
51
- - lib/active_support/core_ext/array.rb
52
- - lib/active_support/core_ext/blank.rb
53
- - lib/active_support/core_ext/cgi
54
- - lib/active_support/core_ext/cgi.rb
55
- - lib/active_support/core_ext/date
56
- - lib/active_support/core_ext/date.rb
57
- - lib/active_support/core_ext/enumerable.rb
58
- - lib/active_support/core_ext/exception.rb
59
- - lib/active_support/core_ext/hash
60
- - lib/active_support/core_ext/hash.rb
61
- - lib/active_support/core_ext/integer
62
- - lib/active_support/core_ext/integer.rb
63
- - lib/active_support/core_ext/kernel.rb
64
- - lib/active_support/core_ext/load_error.rb
65
- - lib/active_support/core_ext/numeric
66
- - lib/active_support/core_ext/numeric.rb
67
- - lib/active_support/core_ext/object_and_class.rb
68
- - lib/active_support/core_ext/range
69
- - lib/active_support/core_ext/range.rb
70
- - lib/active_support/core_ext/string
71
- - lib/active_support/core_ext/string.rb
72
- - lib/active_support/core_ext/time
73
- - lib/active_support/core_ext/time.rb
74
- - lib/active_support/core_ext/array/conversions.rb
75
- - lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
76
- - lib/active_support/core_ext/date/conversions.rb
77
- - lib/active_support/core_ext/hash/indifferent_access.rb
78
- - lib/active_support/core_ext/hash/keys.rb
79
- - lib/active_support/core_ext/hash/reverse_merge.rb
80
- - lib/active_support/core_ext/integer/even_odd.rb
81
- - lib/active_support/core_ext/integer/inflections.rb
82
- - lib/active_support/core_ext/numeric/bytes.rb
83
- - lib/active_support/core_ext/numeric/time.rb
84
- - lib/active_support/core_ext/range/conversions.rb
85
- - lib/active_support/core_ext/string/access.rb
86
- - lib/active_support/core_ext/string/conversions.rb
87
- - lib/active_support/core_ext/string/inflections.rb
88
- - lib/active_support/core_ext/string/starts_ends_with.rb
89
- - lib/active_support/core_ext/time/calculations.rb
90
- - lib/active_support/core_ext/time/conversions.rb
91
- - lib/active_support/values/time_zone.rb
92
- test_files: []
93
- rdoc_options: []
94
- extra_rdoc_files: []
6
+ authors:
7
+ - David Heinemeier Hansson
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: i18n
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '1.6'
19
+ - - "<"
20
+ - !ruby/object:Gem::Version
21
+ version: '2'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '1.6'
29
+ - - "<"
30
+ - !ruby/object:Gem::Version
31
+ version: '2'
32
+ - !ruby/object:Gem::Dependency
33
+ name: tzinfo
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - "~>"
37
+ - !ruby/object:Gem::Version
38
+ version: '2.0'
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 2.0.5
42
+ type: :runtime
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '2.0'
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: 2.0.5
52
+ - !ruby/object:Gem::Dependency
53
+ name: concurrent-ruby
54
+ requirement: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - "~>"
57
+ - !ruby/object:Gem::Version
58
+ version: '1.0'
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 1.3.1
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.0'
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: 1.3.1
72
+ - !ruby/object:Gem::Dependency
73
+ name: connection_pool
74
+ requirement: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: 2.2.5
79
+ type: :runtime
80
+ prerelease: false
81
+ version_requirements: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: 2.2.5
86
+ - !ruby/object:Gem::Dependency
87
+ name: minitest
88
+ requirement: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '5.1'
93
+ type: :runtime
94
+ prerelease: false
95
+ version_requirements: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '5.1'
100
+ - !ruby/object:Gem::Dependency
101
+ name: base64
102
+ requirement: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ type: :runtime
108
+ prerelease: false
109
+ version_requirements: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ - !ruby/object:Gem::Dependency
115
+ name: drb
116
+ requirement: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ type: :runtime
122
+ prerelease: false
123
+ version_requirements: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: '0'
128
+ - !ruby/object:Gem::Dependency
129
+ name: bigdecimal
130
+ requirement: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: '0'
135
+ type: :runtime
136
+ prerelease: false
137
+ version_requirements: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - ">="
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ - !ruby/object:Gem::Dependency
143
+ name: json
144
+ requirement: !ruby/object:Gem::Requirement
145
+ requirements:
146
+ - - ">="
147
+ - !ruby/object:Gem::Version
148
+ version: '0'
149
+ type: :runtime
150
+ prerelease: false
151
+ version_requirements: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ version: '0'
156
+ - !ruby/object:Gem::Dependency
157
+ name: logger
158
+ requirement: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ version: 1.4.2
163
+ type: :runtime
164
+ prerelease: false
165
+ version_requirements: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - ">="
168
+ - !ruby/object:Gem::Version
169
+ version: 1.4.2
170
+ - !ruby/object:Gem::Dependency
171
+ name: securerandom
172
+ requirement: !ruby/object:Gem::Requirement
173
+ requirements:
174
+ - - ">="
175
+ - !ruby/object:Gem::Version
176
+ version: '0.3'
177
+ type: :runtime
178
+ prerelease: false
179
+ version_requirements: !ruby/object:Gem::Requirement
180
+ requirements:
181
+ - - ">="
182
+ - !ruby/object:Gem::Version
183
+ version: '0.3'
184
+ - !ruby/object:Gem::Dependency
185
+ name: uri
186
+ requirement: !ruby/object:Gem::Requirement
187
+ requirements:
188
+ - - ">="
189
+ - !ruby/object:Gem::Version
190
+ version: 0.13.1
191
+ type: :runtime
192
+ prerelease: false
193
+ version_requirements: !ruby/object:Gem::Requirement
194
+ requirements:
195
+ - - ">="
196
+ - !ruby/object:Gem::Version
197
+ version: 0.13.1
198
+ description: A toolkit of support libraries and Ruby core extensions extracted from
199
+ the Rails framework. Rich support for multibyte strings, internationalization, time
200
+ zones, and testing.
201
+ email: david@loudthinking.com
95
202
  executables: []
96
203
  extensions: []
204
+ extra_rdoc_files: []
205
+ files:
206
+ - CHANGELOG.md
207
+ - MIT-LICENSE
208
+ - README.rdoc
209
+ - lib/active_support.rb
210
+ - lib/active_support/actionable_error.rb
211
+ - lib/active_support/all.rb
212
+ - lib/active_support/array_inquirer.rb
213
+ - lib/active_support/backtrace_cleaner.rb
214
+ - lib/active_support/benchmark.rb
215
+ - lib/active_support/benchmarkable.rb
216
+ - lib/active_support/broadcast_logger.rb
217
+ - lib/active_support/builder.rb
218
+ - lib/active_support/cache.rb
219
+ - lib/active_support/cache/coder.rb
220
+ - lib/active_support/cache/entry.rb
221
+ - lib/active_support/cache/file_store.rb
222
+ - lib/active_support/cache/mem_cache_store.rb
223
+ - lib/active_support/cache/memory_store.rb
224
+ - lib/active_support/cache/null_store.rb
225
+ - lib/active_support/cache/redis_cache_store.rb
226
+ - lib/active_support/cache/serializer_with_fallback.rb
227
+ - lib/active_support/cache/strategy/local_cache.rb
228
+ - lib/active_support/cache/strategy/local_cache_middleware.rb
229
+ - lib/active_support/callbacks.rb
230
+ - lib/active_support/class_attribute.rb
231
+ - lib/active_support/code_generator.rb
232
+ - lib/active_support/concern.rb
233
+ - lib/active_support/concurrency/load_interlock_aware_monitor.rb
234
+ - lib/active_support/concurrency/null_lock.rb
235
+ - lib/active_support/concurrency/share_lock.rb
236
+ - lib/active_support/concurrency/thread_monitor.rb
237
+ - lib/active_support/configurable.rb
238
+ - lib/active_support/configuration_file.rb
239
+ - lib/active_support/continuous_integration.rb
240
+ - lib/active_support/core_ext.rb
241
+ - lib/active_support/core_ext/array.rb
242
+ - lib/active_support/core_ext/array/access.rb
243
+ - lib/active_support/core_ext/array/conversions.rb
244
+ - lib/active_support/core_ext/array/extract.rb
245
+ - lib/active_support/core_ext/array/extract_options.rb
246
+ - lib/active_support/core_ext/array/grouping.rb
247
+ - lib/active_support/core_ext/array/inquiry.rb
248
+ - lib/active_support/core_ext/array/wrap.rb
249
+ - lib/active_support/core_ext/benchmark.rb
250
+ - lib/active_support/core_ext/big_decimal.rb
251
+ - lib/active_support/core_ext/big_decimal/conversions.rb
252
+ - lib/active_support/core_ext/class.rb
253
+ - lib/active_support/core_ext/class/attribute.rb
254
+ - lib/active_support/core_ext/class/attribute_accessors.rb
255
+ - lib/active_support/core_ext/class/subclasses.rb
256
+ - lib/active_support/core_ext/date.rb
257
+ - lib/active_support/core_ext/date/acts_like.rb
258
+ - lib/active_support/core_ext/date/blank.rb
259
+ - lib/active_support/core_ext/date/calculations.rb
260
+ - lib/active_support/core_ext/date/conversions.rb
261
+ - lib/active_support/core_ext/date/zones.rb
262
+ - lib/active_support/core_ext/date_and_time/calculations.rb
263
+ - lib/active_support/core_ext/date_and_time/compatibility.rb
264
+ - lib/active_support/core_ext/date_and_time/zones.rb
265
+ - lib/active_support/core_ext/date_time.rb
266
+ - lib/active_support/core_ext/date_time/acts_like.rb
267
+ - lib/active_support/core_ext/date_time/blank.rb
268
+ - lib/active_support/core_ext/date_time/calculations.rb
269
+ - lib/active_support/core_ext/date_time/compatibility.rb
270
+ - lib/active_support/core_ext/date_time/conversions.rb
271
+ - lib/active_support/core_ext/digest.rb
272
+ - lib/active_support/core_ext/digest/uuid.rb
273
+ - lib/active_support/core_ext/enumerable.rb
274
+ - lib/active_support/core_ext/erb/util.rb
275
+ - lib/active_support/core_ext/file.rb
276
+ - lib/active_support/core_ext/file/atomic.rb
277
+ - lib/active_support/core_ext/hash.rb
278
+ - lib/active_support/core_ext/hash/conversions.rb
279
+ - lib/active_support/core_ext/hash/deep_merge.rb
280
+ - lib/active_support/core_ext/hash/deep_transform_values.rb
281
+ - lib/active_support/core_ext/hash/except.rb
282
+ - lib/active_support/core_ext/hash/indifferent_access.rb
283
+ - lib/active_support/core_ext/hash/keys.rb
284
+ - lib/active_support/core_ext/hash/reverse_merge.rb
285
+ - lib/active_support/core_ext/hash/slice.rb
286
+ - lib/active_support/core_ext/integer.rb
287
+ - lib/active_support/core_ext/integer/inflections.rb
288
+ - lib/active_support/core_ext/integer/multiple.rb
289
+ - lib/active_support/core_ext/integer/time.rb
290
+ - lib/active_support/core_ext/kernel.rb
291
+ - lib/active_support/core_ext/kernel/concern.rb
292
+ - lib/active_support/core_ext/kernel/reporting.rb
293
+ - lib/active_support/core_ext/kernel/singleton_class.rb
294
+ - lib/active_support/core_ext/load_error.rb
295
+ - lib/active_support/core_ext/module.rb
296
+ - lib/active_support/core_ext/module/aliasing.rb
297
+ - lib/active_support/core_ext/module/anonymous.rb
298
+ - lib/active_support/core_ext/module/attr_internal.rb
299
+ - lib/active_support/core_ext/module/attribute_accessors.rb
300
+ - lib/active_support/core_ext/module/attribute_accessors_per_thread.rb
301
+ - lib/active_support/core_ext/module/concerning.rb
302
+ - lib/active_support/core_ext/module/delegation.rb
303
+ - lib/active_support/core_ext/module/deprecation.rb
304
+ - lib/active_support/core_ext/module/introspection.rb
305
+ - lib/active_support/core_ext/module/redefine_method.rb
306
+ - lib/active_support/core_ext/module/remove_method.rb
307
+ - lib/active_support/core_ext/name_error.rb
308
+ - lib/active_support/core_ext/numeric.rb
309
+ - lib/active_support/core_ext/numeric/bytes.rb
310
+ - lib/active_support/core_ext/numeric/conversions.rb
311
+ - lib/active_support/core_ext/numeric/time.rb
312
+ - lib/active_support/core_ext/object.rb
313
+ - lib/active_support/core_ext/object/acts_like.rb
314
+ - lib/active_support/core_ext/object/blank.rb
315
+ - lib/active_support/core_ext/object/conversions.rb
316
+ - lib/active_support/core_ext/object/deep_dup.rb
317
+ - lib/active_support/core_ext/object/duplicable.rb
318
+ - lib/active_support/core_ext/object/inclusion.rb
319
+ - lib/active_support/core_ext/object/instance_variables.rb
320
+ - lib/active_support/core_ext/object/json.rb
321
+ - lib/active_support/core_ext/object/to_param.rb
322
+ - lib/active_support/core_ext/object/to_query.rb
323
+ - lib/active_support/core_ext/object/try.rb
324
+ - lib/active_support/core_ext/object/with.rb
325
+ - lib/active_support/core_ext/object/with_options.rb
326
+ - lib/active_support/core_ext/pathname.rb
327
+ - lib/active_support/core_ext/pathname/blank.rb
328
+ - lib/active_support/core_ext/pathname/existence.rb
329
+ - lib/active_support/core_ext/range.rb
330
+ - lib/active_support/core_ext/range/compare_range.rb
331
+ - lib/active_support/core_ext/range/conversions.rb
332
+ - lib/active_support/core_ext/range/overlap.rb
333
+ - lib/active_support/core_ext/range/sole.rb
334
+ - lib/active_support/core_ext/regexp.rb
335
+ - lib/active_support/core_ext/securerandom.rb
336
+ - lib/active_support/core_ext/string.rb
337
+ - lib/active_support/core_ext/string/access.rb
338
+ - lib/active_support/core_ext/string/behavior.rb
339
+ - lib/active_support/core_ext/string/conversions.rb
340
+ - lib/active_support/core_ext/string/exclude.rb
341
+ - lib/active_support/core_ext/string/filters.rb
342
+ - lib/active_support/core_ext/string/indent.rb
343
+ - lib/active_support/core_ext/string/inflections.rb
344
+ - lib/active_support/core_ext/string/inquiry.rb
345
+ - lib/active_support/core_ext/string/multibyte.rb
346
+ - lib/active_support/core_ext/string/output_safety.rb
347
+ - lib/active_support/core_ext/string/starts_ends_with.rb
348
+ - lib/active_support/core_ext/string/strip.rb
349
+ - lib/active_support/core_ext/string/zones.rb
350
+ - lib/active_support/core_ext/symbol.rb
351
+ - lib/active_support/core_ext/symbol/starts_ends_with.rb
352
+ - lib/active_support/core_ext/thread/backtrace/location.rb
353
+ - lib/active_support/core_ext/time.rb
354
+ - lib/active_support/core_ext/time/acts_like.rb
355
+ - lib/active_support/core_ext/time/calculations.rb
356
+ - lib/active_support/core_ext/time/compatibility.rb
357
+ - lib/active_support/core_ext/time/conversions.rb
358
+ - lib/active_support/core_ext/time/zones.rb
359
+ - lib/active_support/current_attributes.rb
360
+ - lib/active_support/current_attributes/test_helper.rb
361
+ - lib/active_support/deep_mergeable.rb
362
+ - lib/active_support/delegation.rb
363
+ - lib/active_support/dependencies.rb
364
+ - lib/active_support/dependencies/autoload.rb
365
+ - lib/active_support/dependencies/interlock.rb
366
+ - lib/active_support/dependencies/require_dependency.rb
367
+ - lib/active_support/deprecation.rb
368
+ - lib/active_support/deprecation/behaviors.rb
369
+ - lib/active_support/deprecation/constant_accessor.rb
370
+ - lib/active_support/deprecation/deprecators.rb
371
+ - lib/active_support/deprecation/disallowed.rb
372
+ - lib/active_support/deprecation/method_wrappers.rb
373
+ - lib/active_support/deprecation/proxy_wrappers.rb
374
+ - lib/active_support/deprecation/reporting.rb
375
+ - lib/active_support/deprecator.rb
376
+ - lib/active_support/descendants_tracker.rb
377
+ - lib/active_support/digest.rb
378
+ - lib/active_support/duration.rb
379
+ - lib/active_support/duration/iso8601_parser.rb
380
+ - lib/active_support/duration/iso8601_serializer.rb
381
+ - lib/active_support/editor.rb
382
+ - lib/active_support/encrypted_configuration.rb
383
+ - lib/active_support/encrypted_file.rb
384
+ - lib/active_support/environment_inquirer.rb
385
+ - lib/active_support/error_reporter.rb
386
+ - lib/active_support/error_reporter/test_helper.rb
387
+ - lib/active_support/event_reporter.rb
388
+ - lib/active_support/event_reporter/test_helper.rb
389
+ - lib/active_support/evented_file_update_checker.rb
390
+ - lib/active_support/execution_context.rb
391
+ - lib/active_support/execution_context/test_helper.rb
392
+ - lib/active_support/execution_wrapper.rb
393
+ - lib/active_support/executor.rb
394
+ - lib/active_support/executor/test_helper.rb
395
+ - lib/active_support/file_update_checker.rb
396
+ - lib/active_support/fork_tracker.rb
397
+ - lib/active_support/gem_version.rb
398
+ - lib/active_support/gzip.rb
399
+ - lib/active_support/hash_with_indifferent_access.rb
400
+ - lib/active_support/html_safe_translation.rb
401
+ - lib/active_support/i18n.rb
402
+ - lib/active_support/i18n_railtie.rb
403
+ - lib/active_support/inflections.rb
404
+ - lib/active_support/inflector.rb
405
+ - lib/active_support/inflector/inflections.rb
406
+ - lib/active_support/inflector/methods.rb
407
+ - lib/active_support/inflector/transliterate.rb
408
+ - lib/active_support/isolated_execution_state.rb
409
+ - lib/active_support/json.rb
410
+ - lib/active_support/json/decoding.rb
411
+ - lib/active_support/json/encoding.rb
412
+ - lib/active_support/key_generator.rb
413
+ - lib/active_support/lazy_load_hooks.rb
414
+ - lib/active_support/locale/en.rb
415
+ - lib/active_support/locale/en.yml
416
+ - lib/active_support/log_subscriber.rb
417
+ - lib/active_support/log_subscriber/test_helper.rb
418
+ - lib/active_support/logger.rb
419
+ - lib/active_support/logger_silence.rb
420
+ - lib/active_support/logger_thread_safe_level.rb
421
+ - lib/active_support/message_encryptor.rb
422
+ - lib/active_support/message_encryptors.rb
423
+ - lib/active_support/message_pack.rb
424
+ - lib/active_support/message_pack/cache_serializer.rb
425
+ - lib/active_support/message_pack/extensions.rb
426
+ - lib/active_support/message_pack/serializer.rb
427
+ - lib/active_support/message_verifier.rb
428
+ - lib/active_support/message_verifiers.rb
429
+ - lib/active_support/messages/codec.rb
430
+ - lib/active_support/messages/metadata.rb
431
+ - lib/active_support/messages/rotation_configuration.rb
432
+ - lib/active_support/messages/rotation_coordinator.rb
433
+ - lib/active_support/messages/rotator.rb
434
+ - lib/active_support/messages/serializer_with_fallback.rb
435
+ - lib/active_support/multibyte.rb
436
+ - lib/active_support/multibyte/chars.rb
437
+ - lib/active_support/multibyte/unicode.rb
438
+ - lib/active_support/notifications.rb
439
+ - lib/active_support/notifications/fanout.rb
440
+ - lib/active_support/notifications/instrumenter.rb
441
+ - lib/active_support/number_helper.rb
442
+ - lib/active_support/number_helper/number_converter.rb
443
+ - lib/active_support/number_helper/number_to_currency_converter.rb
444
+ - lib/active_support/number_helper/number_to_delimited_converter.rb
445
+ - lib/active_support/number_helper/number_to_human_converter.rb
446
+ - lib/active_support/number_helper/number_to_human_size_converter.rb
447
+ - lib/active_support/number_helper/number_to_percentage_converter.rb
448
+ - lib/active_support/number_helper/number_to_phone_converter.rb
449
+ - lib/active_support/number_helper/number_to_rounded_converter.rb
450
+ - lib/active_support/number_helper/rounding_helper.rb
451
+ - lib/active_support/option_merger.rb
452
+ - lib/active_support/ordered_hash.rb
453
+ - lib/active_support/ordered_options.rb
454
+ - lib/active_support/parameter_filter.rb
455
+ - lib/active_support/rails.rb
456
+ - lib/active_support/railtie.rb
457
+ - lib/active_support/reloader.rb
458
+ - lib/active_support/rescuable.rb
459
+ - lib/active_support/secure_compare_rotator.rb
460
+ - lib/active_support/security_utils.rb
461
+ - lib/active_support/string_inquirer.rb
462
+ - lib/active_support/structured_event_subscriber.rb
463
+ - lib/active_support/subscriber.rb
464
+ - lib/active_support/syntax_error_proxy.rb
465
+ - lib/active_support/tagged_logging.rb
466
+ - lib/active_support/test_case.rb
467
+ - lib/active_support/testing/assertions.rb
468
+ - lib/active_support/testing/autorun.rb
469
+ - lib/active_support/testing/constant_lookup.rb
470
+ - lib/active_support/testing/constant_stubbing.rb
471
+ - lib/active_support/testing/declarative.rb
472
+ - lib/active_support/testing/deprecation.rb
473
+ - lib/active_support/testing/error_reporter_assertions.rb
474
+ - lib/active_support/testing/event_reporter_assertions.rb
475
+ - lib/active_support/testing/file_fixtures.rb
476
+ - lib/active_support/testing/isolation.rb
477
+ - lib/active_support/testing/method_call_assertions.rb
478
+ - lib/active_support/testing/notification_assertions.rb
479
+ - lib/active_support/testing/parallelization.rb
480
+ - lib/active_support/testing/parallelization/server.rb
481
+ - lib/active_support/testing/parallelization/worker.rb
482
+ - lib/active_support/testing/parallelize_executor.rb
483
+ - lib/active_support/testing/setup_and_teardown.rb
484
+ - lib/active_support/testing/stream.rb
485
+ - lib/active_support/testing/tagged_logging.rb
486
+ - lib/active_support/testing/tests_without_assertions.rb
487
+ - lib/active_support/testing/time_helpers.rb
488
+ - lib/active_support/time.rb
489
+ - lib/active_support/time_with_zone.rb
490
+ - lib/active_support/values/time_zone.rb
491
+ - lib/active_support/version.rb
492
+ - lib/active_support/xml_mini.rb
493
+ - lib/active_support/xml_mini/jdom.rb
494
+ - lib/active_support/xml_mini/libxml.rb
495
+ - lib/active_support/xml_mini/libxmlsax.rb
496
+ - lib/active_support/xml_mini/nokogiri.rb
497
+ - lib/active_support/xml_mini/nokogirisax.rb
498
+ - lib/active_support/xml_mini/rexml.rb
499
+ homepage: https://rubyonrails.org
500
+ licenses:
501
+ - MIT
502
+ metadata:
503
+ bug_tracker_uri: https://github.com/rails/rails/issues
504
+ changelog_uri: https://github.com/rails/rails/blob/v8.1.2/activesupport/CHANGELOG.md
505
+ documentation_uri: https://api.rubyonrails.org/v8.1.2/
506
+ mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
507
+ source_code_uri: https://github.com/rails/rails/tree/v8.1.2/activesupport
508
+ rubygems_mfa_required: 'true'
509
+ rdoc_options:
510
+ - "--encoding"
511
+ - UTF-8
512
+ require_paths:
513
+ - lib
514
+ required_ruby_version: !ruby/object:Gem::Requirement
515
+ requirements:
516
+ - - ">="
517
+ - !ruby/object:Gem::Version
518
+ version: 3.2.0
519
+ required_rubygems_version: !ruby/object:Gem::Requirement
520
+ requirements:
521
+ - - ">="
522
+ - !ruby/object:Gem::Version
523
+ version: '0'
97
524
  requirements: []
98
- dependencies: []
525
+ rubygems_version: 4.0.3
526
+ specification_version: 4
527
+ summary: A toolkit of support libraries and Ruby core extensions extracted from the
528
+ Rails framework.
529
+ test_files: []