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