Fix active_support/*/conversions by requiring missing files

This commit is contained in:
Ryan Davis 2023-10-19 16:02:34 -07:00
parent 9f6b721b1d
commit 448cc0d0c3
4 changed files with 8 additions and 0 deletions

@ -4,6 +4,8 @@
require "active_support/core_ext/string/inflections"
require "active_support/core_ext/object/to_param"
require "active_support/core_ext/object/to_query"
require "active_support/deprecation"
require "active_support/deprecator"
class Array
# Converts the array to a comma-separated sentence where the last element is

@ -4,6 +4,8 @@
require "active_support/inflector/methods"
require "active_support/core_ext/date/zones"
require "active_support/core_ext/module/redefine_method"
require "active_support/deprecation"
require "active_support/deprecator"
class Date
DATE_FORMATS = {

@ -3,6 +3,8 @@
require "time"
require "active_support/inflector/methods"
require "active_support/values/time_zone"
require "active_support/deprecation"
require "active_support/deprecator"
class Time
DATE_FORMATS = {

@ -1,5 +1,7 @@
# frozen_string_literal: true
require "active_support/dependencies/autoload"
module ActiveSupport
module NumberHelper
extend ActiveSupport::Autoload