1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/lib/active_support
Andrew White 697edcb30f
Fix ActiveSupport::TimeZone#utc_to_local
When utc_to_local_returns_utc_offset_times is false and the time
instance had fractional seconds the new UTC time instance was out
by a factor of 1,000,000 as the Time.utc constructor takes a usec
value and not a fractional second value.
2021-04-13 08:58:35 +01:00
..
cache Refactor LocalCache to avoid calling Marshal.dump as much 2021-04-08 18:06:24 +02:00
concurrency
core_ext Merge pull request #41931 from MarcelEeken/deep-merge-changing-original-hash 2021-04-12 15:53:35 -04:00
current_attributes Allow access to CurrentAttributes in test teardown 2020-11-09 15:15:42 -05:00
dependencies Drops support for classic mode 2021-03-08 05:30:11 +01:00
deprecation Stop checking if ruby2_keywords is defined 2021-04-11 13:42:02 +02:00
duration feat(rubocop): Add Style/RedundantRegexpEscape 2020-12-08 18:57:09 +00:00
inflector Make sure Inflector.underscore returns a String 2021-04-08 16:26:45 +02:00
json Use transform_values in a few more places 2020-09-08 01:34:41 +01:00
locale Avoid having to store complex object in the default translation file 2021-02-18 06:25:56 +00:00
log_subscriber
messages
multibyte Remove require "active_support/core_ext/symbol/starts_ends_with" 2021-02-09 22:31:09 +09:00
notifications Forward sql.active_record notifications back into the calling thread 2021-03-03 10:33:37 +01:00
number_helper Avoid having to store complex object in the default translation file 2021-02-18 06:25:56 +00:00
testing Use Enumerator#all? and Enumerator#any? with classes instead of iterations 2021-02-07 01:29:50 -05:00
values Fix ActiveSupport::TimeZone#utc_to_local 2021-04-13 08:58:35 +01:00
xml_mini Satisfy Rubocop 2020-09-24 19:50:26 -05:00
actionable_error.rb
all.rb
array_inquirer.rb Remove require "active_support/core_ext/symbol/starts_ends_with" 2021-02-09 22:31:09 +09:00
backtrace_cleaner.rb Revert "Merge pull request #39304 from zenspider/zenspider/backtrace_filter_should_never_return_empty" 2020-10-06 22:31:41 +00:00
benchmarkable.rb Logger#info, debug, etc. are public methods 2020-10-02 15:52:09 +09:00
builder.rb
cache.rb Restore the Entry#bytesize comments removed in #41882 2021-04-12 23:15:02 +02:00
callbacks.rb Remove special case filtering for Procs. 2021-03-02 17:20:35 -08:00
concern.rb [ci skip] Fix rdoc formatting 2020-11-17 18:49:19 +05:30
configurable.rb Corrects the config object class [ci skip] 2020-08-23 00:53:22 +05:30
configuration_file.rb Include file path in invisible space warning 2020-12-23 10:07:38 +00:00
core_ext.rb require "time" where we depend on Time#xmlschema 2020-12-16 00:50:05 -08:00
current_attributes.rb Don't define methods using the method modifier in the same line as the method 2021-04-12 18:49:54 +00:00
dependencies.rb Deletes AS::Dependencies.warnings_on_first_load 2021-03-10 07:55:29 +01:00
deprecation.rb Rails 6.2 is now Rails 7.0 2021-02-04 16:47:16 +00:00
descendants_tracker.rb
digest.rb Change the default digest for new apps to SHA256 2021-01-08 12:07:20 +01:00
duration.rb Rename prefix to in_* and update CHANGELOG 2020-08-26 09:36:03 -05:00
encrypted_configuration.rb
encrypted_file.rb Improve error when EncryptedFile key length wrong 2020-09-24 19:45:11 -05:00
environment_inquirer.rb
evented_file_update_checker.rb Listen on fork in EventedFileUpdateChecker 2020-09-26 16:35:28 -05:00
execution_wrapper.rb
executor.rb
file_update_checker.rb
fork_tracker.rb Use triple-dot delegation in ForkTracker 2021-03-23 08:52:29 +01:00
gem_version.rb Rails 6.2 is now Rails 7.0 2021-02-04 16:47:16 +00:00
gzip.rb
hash_with_indifferent_access.rb Merge pull request #41707 from okuramasafumi/add-missing-require-to-hash_with_indifferent_access 2021-03-21 15:19:44 +09:00
i18n.rb Inflection support default_locale and fallbacks 2020-12-09 10:06:05 -08:00
i18n_railtie.rb Remove deprecated fallback to I18n.default_local when config.i18n.fallbacks is empty 2020-10-30 00:25:50 +00:00
inflections.rb
inflector.rb
json.rb
key_generator.rb Allow configuration of the digest class used in the key generator 2021-01-07 14:28:01 +01:00
lazy_load_hooks.rb
log_subscriber.rb Fix LogSubscriber for buffered event w/ nil logger 2021-03-29 17:31:07 -07:00
logger.rb
logger_silence.rb Remove deprecated LoggerSilence constant 2020-10-30 00:25:50 +00:00
logger_thread_safe_level.rb Remove deprecated ActiveSupport::LoggerThreadSafeLevel#after_initialize 2020-10-30 00:25:51 +00:00
message_encryptor.rb
message_verifier.rb Use string for example 2021-01-28 18:19:46 -05:00
multibyte.rb
notifications.rb Forward sql.active_record notifications back into the calling thread 2021-03-03 10:33:37 +01:00
number_helper.rb
option_merger.rb Remove require "active_support/core_ext/symbol/starts_ends_with" 2021-02-09 22:31:09 +09:00
ordered_hash.rb Really make OrderedHash private to the framework 2021-03-22 22:13:23 +00:00
ordered_options.rb Use super instead of self 2020-08-26 17:44:44 +00:00
parameter_filter.rb Fix inline code markup [ci-skip] 2021-02-14 11:20:35 -06:00
per_thread_registry.rb
proxy_object.rb
rails.rb
railtie.rb Allow to opt-in to the new TimeWithZone.name and fix XmlMini serialization 2021-04-12 22:03:31 +02:00
reloader.rb
rescuable.rb Clarify use of rescue_from [ci skip] 2020-12-30 11:51:13 -05:00
secure_compare_rotator.rb
security_utils.rb secure_compare: Check byte size instead of length 2021-04-02 12:45:29 -04:00
string_inquirer.rb Remove require "active_support/core_ext/symbol/starts_ends_with" 2021-02-09 22:31:09 +09:00
subscriber.rb Forward sql.active_record notifications back into the calling thread 2021-03-03 10:33:37 +01:00
tagged_logging.rb Clone to keep extended Logger methods for tagged logger 2020-12-07 14:43:37 +01:00
test_case.rb Remove overwriting test_order 2021-03-31 11:50:08 -04:00
time.rb
time_with_zone.rb Allow to opt-in to the new TimeWithZone.name and fix XmlMini serialization 2021-04-12 22:03:31 +02:00
version.rb
xml_mini.rb Allow to opt-in to the new TimeWithZone.name and fix XmlMini serialization 2021-04-12 22:03:31 +02:00