diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock
index e5508794c8..737de7169f 100644
--- a/Library/Homebrew/Gemfile.lock
+++ b/Library/Homebrew/Gemfile.lock
@@ -1,7 +1,7 @@
GEM
remote: https://rubygems.org/
specs:
- activesupport (6.1.3.2)
+ activesupport (6.1.4)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
diff --git a/Library/Homebrew/sorbet/rbi/gems/activesupport@6.1.3.2.rbi b/Library/Homebrew/sorbet/rbi/gems/activesupport@6.1.4.rbi
similarity index 82%
rename from Library/Homebrew/sorbet/rbi/gems/activesupport@6.1.3.2.rbi
rename to Library/Homebrew/sorbet/rbi/gems/activesupport@6.1.4.rbi
index b3427d020a..c2ba590a2a 100644
--- a/Library/Homebrew/sorbet/rbi/gems/activesupport@6.1.3.2.rbi
+++ b/Library/Homebrew/sorbet/rbi/gems/activesupport@6.1.4.rbi
@@ -5,11 +5,15 @@
# typed: false
module ActiveSupport
- extend(::ActiveSupport::LazyLoadHooks)
+ extend ::ActiveSupport::LazyLoadHooks
+end
+
+module ActiveSupport::BigDecimalWithDefaultFormat
+ def to_s(format = T.unsafe(nil)); end
end
module ActiveSupport::Inflector
- extend(::ActiveSupport::Inflector)
+ extend ::ActiveSupport::Inflector
def camelize(term, uppercase_first_letter = T.unsafe(nil)); end
def classify(table_name); end
@@ -81,6 +85,55 @@ class ActiveSupport::Inflector::Inflections::Uncountables < ::Array
def to_regex(string); end
end
+module ActiveSupport::JSON
+ class << self
+ def decode(json); end
+ def encode(value, options = T.unsafe(nil)); end
+ def parse_error; end
+
+ private
+
+ def convert_dates_from(data); end
+ end
+end
+
+ActiveSupport::JSON::DATETIME_REGEX = T.let(T.unsafe(nil), Regexp)
+ActiveSupport::JSON::DATE_REGEX = T.let(T.unsafe(nil), Regexp)
+
+module ActiveSupport::JSON::Encoding
+ class << self
+ def escape_html_entities_in_json; end
+ def escape_html_entities_in_json=(_arg0); end
+ def json_encoder; end
+ def json_encoder=(_arg0); end
+ def time_precision; end
+ def time_precision=(_arg0); end
+ def use_standard_json_time_format; end
+ def use_standard_json_time_format=(_arg0); end
+ end
+end
+
+class ActiveSupport::JSON::Encoding::JSONGemEncoder
+ def initialize(options = T.unsafe(nil)); end
+
+ def encode(value); end
+ def options; end
+
+ private
+
+ def jsonify(value); end
+ def stringify(jsonified); end
+end
+
+ActiveSupport::JSON::Encoding::JSONGemEncoder::ESCAPED_CHARS = T.let(T.unsafe(nil), Hash)
+ActiveSupport::JSON::Encoding::JSONGemEncoder::ESCAPE_REGEX_WITHOUT_HTML_ENTITIES = T.let(T.unsafe(nil), Regexp)
+ActiveSupport::JSON::Encoding::JSONGemEncoder::ESCAPE_REGEX_WITH_HTML_ENTITIES = T.let(T.unsafe(nil), Regexp)
+
+class ActiveSupport::JSON::Encoding::JSONGemEncoder::EscapedString < ::String
+ def to_json(*_arg0); end
+ def to_s; end
+end
+
module ActiveSupport::LazyLoadHooks
def on_load(name, options = T.unsafe(nil), &block); end
def run_load_hooks(name, base = T.unsafe(nil)); end
@@ -103,7 +156,7 @@ module ActiveSupport::Multibyte
end
class ActiveSupport::Multibyte::Chars
- include(::Comparable)
+ include ::Comparable
def initialize(string); end
@@ -136,7 +189,7 @@ class ActiveSupport::Multibyte::Chars
end
module ActiveSupport::Multibyte::Unicode
- extend(::ActiveSupport::Multibyte::Unicode)
+ extend ::ActiveSupport::Multibyte::Unicode
def compose(codepoints); end
def decompose(type, codepoints); end
@@ -151,53 +204,8 @@ end
ActiveSupport::Multibyte::Unicode::UNICODE_VERSION = T.let(T.unsafe(nil), String)
-module ActiveSupport::BigDecimalWithDefaultFormat
- def to_s(format = T.unsafe(nil)); end
-end
-
-module ActiveSupport::JSON
- class << self
- def decode(json); end
- def encode(value, options = T.unsafe(nil)); end
- def parse_error; end
-
- private
-
- def convert_dates_from(data); end
- end
-end
-
-ActiveSupport::JSON::DATETIME_REGEX = T.let(T.unsafe(nil), Regexp)
-
-ActiveSupport::JSON::DATE_REGEX = T.let(T.unsafe(nil), Regexp)
-
-module ActiveSupport::JSON::Encoding
- class << self
- def escape_html_entities_in_json; end
- def escape_html_entities_in_json=(_arg0); end
- def json_encoder; end
- def json_encoder=(_arg0); end
- def time_precision; end
- def time_precision=(_arg0); end
- def use_standard_json_time_format; end
- def use_standard_json_time_format=(_arg0); end
- end
-end
-
-class ActiveSupport::JSON::Encoding::JSONGemEncoder
- def initialize(options = T.unsafe(nil)); end
-
- def encode(value); end
- def options; end
-
- private
-
- def jsonify(value); end
- def stringify(jsonified); end
-end
-
class ActiveSupport::TimeZone
- include(::Comparable)
+ include ::Comparable
def initialize(name, utc_offset = T.unsafe(nil), tzinfo = T.unsafe(nil)); end
@@ -251,32 +259,33 @@ class ActiveSupport::TimeZone
end
ActiveSupport::TimeZone::MAPPING = T.let(T.unsafe(nil), Hash)
+ActiveSupport::TimeZone::UTC_OFFSET_WITHOUT_COLON = T.let(T.unsafe(nil), String)
+ActiveSupport::TimeZone::UTC_OFFSET_WITH_COLON = T.let(T.unsafe(nil), String)
module ActiveSupport::ToJsonWithActiveSupportEncoder
def to_json(options = T.unsafe(nil)); end
end
class Array
- include(::Enumerable)
- include(::JSON::Ext::Generator::GeneratorMethods::Array)
- include(::Plist::Emit)
+ include ::Enumerable
+ include ::JSON::Ext::Generator::GeneratorMethods::Array
+ include ::Plist::Emit
def as_json(options = T.unsafe(nil)); end
end
class BigDecimal < ::Numeric
- include(::ActiveSupport::BigDecimalWithDefaultFormat)
+ include ::ActiveSupport::BigDecimalWithDefaultFormat
def as_json(options = T.unsafe(nil)); end
end
BigDecimal::EXCEPTION_NaN = T.let(T.unsafe(nil), Integer)
-
BigDecimal::VERSION = T.let(T.unsafe(nil), String)
class Date
- include(::Comparable)
- include(::DateAndTime::Zones)
+ include ::Comparable
+ include ::DateAndTime::Zones
def as_json(options = T.unsafe(nil)); end
def inspect; end
@@ -288,9 +297,7 @@ class Date
end
Date::DATE_FORMATS = T.let(T.unsafe(nil), Hash)
-
-module DateAndTime
-end
+module DateAndTime; end
module DateAndTime::Zones
def in_time_zone(zone = T.unsafe(nil)); end
@@ -369,22 +376,22 @@ class Exception
end
class FalseClass
- include(::JSON::Ext::Generator::GeneratorMethods::FalseClass)
+ include ::JSON::Ext::Generator::GeneratorMethods::FalseClass
def as_json(options = T.unsafe(nil)); end
def blank?; end
end
class Float < ::Numeric
- include(::JSON::Ext::Generator::GeneratorMethods::Float)
+ include ::JSON::Ext::Generator::GeneratorMethods::Float
def as_json(options = T.unsafe(nil)); end
end
class Hash
- include(::Enumerable)
- include(::JSON::Ext::Generator::GeneratorMethods::Hash)
- include(::Plist::Emit)
+ include ::Enumerable
+ include ::JSON::Ext::Generator::GeneratorMethods::Hash
+ include ::Plist::Emit
def as_json(options = T.unsafe(nil)); end
def deep_merge(other_hash, &block); end
@@ -396,18 +403,33 @@ class Hash
end
class IO
- include(::Enumerable)
- include(::File::Constants)
+ include ::Enumerable
+ include ::File::Constants
def as_json(options = T.unsafe(nil)); end
end
-IO::EWOULDBLOCKWaitReadable = IO::EAGAINWaitReadable
+class IO::EAGAINWaitReadable < ::Errno::EAGAIN
+ include ::IO::WaitReadable
+end
+class IO::EAGAINWaitWritable < ::Errno::EAGAIN
+ include ::IO::WaitWritable
+end
+
+class IO::EINPROGRESSWaitReadable < ::Errno::EINPROGRESS
+ include ::IO::WaitReadable
+end
+
+class IO::EINPROGRESSWaitWritable < ::Errno::EINPROGRESS
+ include ::IO::WaitWritable
+end
+
+IO::EWOULDBLOCKWaitReadable = IO::EAGAINWaitReadable
IO::EWOULDBLOCKWaitWritable = IO::EAGAINWaitWritable
class IPAddr
- include(::Comparable)
+ include ::Comparable
def as_json(options = T.unsafe(nil)); end
end
@@ -428,33 +450,33 @@ class Module
end
Module::DELEGATION_RESERVED_KEYWORDS = T.let(T.unsafe(nil), Array)
-
Module::DELEGATION_RESERVED_METHOD_NAMES = T.let(T.unsafe(nil), Set)
-
-class Module::DelegationError < ::NoMethodError
-end
-
+class Module::DelegationError < ::NoMethodError; end
Module::RUBY_RESERVED_KEYWORDS = T.let(T.unsafe(nil), Array)
+class NameError < ::StandardError
+ include ::DidYouMean::Correctable
+end
+
class NilClass
- include(::JSON::Ext::Generator::GeneratorMethods::NilClass)
+ include ::JSON::Ext::Generator::GeneratorMethods::NilClass
def as_json(options = T.unsafe(nil)); end
def blank?; end
end
class Numeric
- include(::Comparable)
+ include ::Comparable
def as_json(options = T.unsafe(nil)); end
def blank?; end
end
class Object < ::BasicObject
- include(::ActiveSupport::ToJsonWithActiveSupportEncoder)
- include(::Kernel)
- include(::JSON::Ext::Generator::GeneratorMethods::Object)
- include(::PP::ObjectMixin)
+ include ::ActiveSupport::ToJsonWithActiveSupportEncoder
+ include ::Kernel
+ include ::JSON::Ext::Generator::GeneratorMethods::Object
+ include ::PP::ObjectMixin
def as_json(options = T.unsafe(nil)); end
def blank?; end
@@ -473,7 +495,7 @@ class Process::Status
end
class Range
- include(::Enumerable)
+ include ::Enumerable
def as_json(options = T.unsafe(nil)); end
end
@@ -517,11 +539,11 @@ class Regexp::Token < ::Struct
end
class String
- include(::Comparable)
- include(::JSON::Ext::Generator::GeneratorMethods::String)
- include(::Colorize::InstanceMethods)
- extend(::JSON::Ext::Generator::GeneratorMethods::String::Extend)
- extend(::Colorize::ClassMethods)
+ include ::Comparable
+ include ::JSON::Ext::Generator::GeneratorMethods::String
+ include ::Colorize::InstanceMethods
+ extend ::JSON::Ext::Generator::GeneratorMethods::String::Extend
+ extend ::Colorize::ClassMethods
def acts_like_string?; end
def as_json(options = T.unsafe(nil)); end
@@ -549,30 +571,29 @@ class String
def titlecase(keep_id_suffix: T.unsafe(nil)); end
def titleize(keep_id_suffix: T.unsafe(nil)); end
def to(position); end
+
+ sig { returns(String) }
def underscore; end
+
def upcase_first; end
end
String::BLANK_RE = T.let(T.unsafe(nil), Regexp)
-
String::ENCODED_BLANKS = T.let(T.unsafe(nil), Concurrent::Map)
class Struct
- include(::Enumerable)
+ include ::Enumerable
def as_json(options = T.unsafe(nil)); end
end
Struct::Group = Etc::Group
-
Struct::HTMLElementDescription = Struct
-
Struct::Passwd = Etc::Passwd
-
Struct::Tms = Process::Tms
class Symbol
- include(::Comparable)
+ include ::Comparable
def as_json(options = T.unsafe(nil)); end
def end_with?(*suffixes); end
@@ -582,7 +603,7 @@ class Symbol
end
class Time
- include(::Comparable)
+ include ::Comparable
def as_json(options = T.unsafe(nil)); end
def blank?; end
@@ -594,15 +615,44 @@ end
Time::DATE_FORMATS = T.let(T.unsafe(nil), Hash)
class TrueClass
- include(::JSON::Ext::Generator::GeneratorMethods::TrueClass)
+ include ::JSON::Ext::Generator::GeneratorMethods::TrueClass
def as_json(options = T.unsafe(nil)); end
def blank?; end
end
+module URI
+ include ::URI::RFC2396_REGEXP
+ extend ::URI::Escape
+end
+
+class URI::File < ::URI::Generic
+ def check_password(user); end
+ def check_user(user); end
+ def check_userinfo(user); end
+ def set_host(v); end
+ def set_password(v); end
+ def set_port(v); end
+ def set_user(v); end
+ def set_userinfo(v); end
+
+ class << self
+ def build(args); end
+ end
+end
+
+URI::File::COMPONENT = T.let(T.unsafe(nil), Array)
+
class URI::Generic
- include(::URI::RFC2396_REGEXP)
- include(::URI)
+ include ::URI::RFC2396_REGEXP
+ include ::URI
def as_json(options = T.unsafe(nil)); end
end
+
+URI::Parser = URI::RFC2396_Parser
+URI::REGEXP = URI::RFC2396_REGEXP
+
+class URI::RFC2396_Parser
+ include ::URI::RFC2396_REGEXP
+end
diff --git a/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi b/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi
index 1af7011c42..324d56c9cf 100644
--- a/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi
+++ b/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi
@@ -127,7 +127,7 @@ class ActiveSupport::Cache::FileStore
include ::ActiveSupport::Cache::Strategy::LocalCache
def cache_path(); end
- def initialize(cache_path, options=T.unsafe(nil)); end
+ def initialize(cache_path, **options); end
DIR_FORMATTER = ::T.let(nil, ::T.untyped)
FILENAME_MAX_SIZE = ::T.let(nil, ::T.untyped)
FILEPATH_MAX_SIZE = ::T.let(nil, ::T.untyped)
@@ -482,6 +482,36 @@ module ActiveSupport::Concern
def self.extended(base); end
end
+module ActiveSupport::Concurrency
+end
+
+class ActiveSupport::Concurrency::ShareLock
+ include ::MonitorMixin
+ def exclusive(purpose: T.unsafe(nil), compatible: T.unsafe(nil), after_compatible: T.unsafe(nil), no_wait: T.unsafe(nil)); end
+
+ def initialize(); end
+
+ def raw_state(); end
+
+ def sharing(); end
+
+ def start_exclusive(purpose: T.unsafe(nil), compatible: T.unsafe(nil), no_wait: T.unsafe(nil)); end
+
+ def start_sharing(); end
+
+ def stop_exclusive(compatible: T.unsafe(nil)); end
+
+ def stop_sharing(); end
+
+ def yield_shares(purpose: T.unsafe(nil), compatible: T.unsafe(nil), block_share: T.unsafe(nil)); end
+end
+
+class ActiveSupport::Concurrency::ShareLock
+end
+
+module ActiveSupport::Concurrency
+end
+
module ActiveSupport::Configurable
def config(); end
end
@@ -532,6 +562,14 @@ class ActiveSupport::CurrentAttributes
def _reset_callbacks(); end
def _run_reset_callbacks(&block); end
+
+ def attributes(); end
+
+ def attributes=(attributes); end
+
+ def reset(); end
+
+ def set(set_attributes); end
end
class ActiveSupport::CurrentAttributes
@@ -553,9 +591,17 @@ class ActiveSupport::CurrentAttributes
def self.before_reset(&block); end
+ def self.clear_all(); end
+
def self.instance(); end
+ def self.reset(*args, &block); end
+
+ def self.reset_all(); end
+
def self.resets(&block); end
+
+ def self.set(*args, &block); end
end
module ActiveSupport::Dependencies
@@ -12489,7 +12535,6 @@ module NKF
end
class NameError
- include ::DidYouMean::Correctable
def missing_name(); end
def missing_name?(name); end
@@ -12610,9 +12655,13 @@ Net::HTTPServerErrorCode = Net::HTTPServerError
Net::HTTPSession = Net::HTTP
-Net::HTTPSuccess::EXCEPTION_TYPE = Net::HTTPError
+class Net::HTTPSuccess
+end
-Net::HTTPSuccessCode = Net::HTTPSuccess
+Net::HTTPSuccessCode::EXCEPTION_TYPE = Net::HTTPError
+
+class Net::HTTPSuccess
+end
class Net::HTTPURITooLong
HAS_BODY = ::T.let(nil, ::T.untyped)
@@ -12762,11 +12811,11 @@ module OS
end
class Object
- include ::Minitest::Expectations
+ include ::ActiveSupport::Dependencies::Loadable
include ::ActiveSupport::Tryable
+ include ::Minitest::Expectations
include ::Utils::Curl
include ::SystemCommand::Mixin
- include ::ActiveSupport::Dependencies::Loadable
include ::ActiveSupport::ForkTracker::CoreExtPrivate
include ::ActiveSupport::ForkTracker::CoreExt
def acts_like?(duck); end
@@ -19145,6 +19194,8 @@ module RSpec::Core::HashImitatable
def any?(*args, &block); end
+ def assert_valid_keys(*args, &block); end
+
def assoc(*args, &block); end
def chain(*args, &block); end
@@ -19179,6 +19230,18 @@ module RSpec::Core::HashImitatable
def deep_merge!(*args, &block); end
+ def deep_stringify_keys(*args, &block); end
+
+ def deep_stringify_keys!(*args, &block); end
+
+ def deep_symbolize_keys(*args, &block); end
+
+ def deep_symbolize_keys!(*args, &block); end
+
+ def deep_transform_keys(*args, &block); end
+
+ def deep_transform_keys!(*args, &block); end
+
def default(*args, &block); end
def default=(*args, &block); end
@@ -19361,8 +19424,16 @@ module RSpec::Core::HashImitatable
def store(*args, &block); end
+ def stringify_keys(*args, &block); end
+
+ def stringify_keys!(*args, &block); end
+
def sum(*args, &block); end
+ def symbolize_keys(*args, &block); end
+
+ def symbolize_keys!(*args, &block); end
+
def take(*args, &block); end
def take_while(*args, &block); end
@@ -19375,6 +19446,10 @@ module RSpec::Core::HashImitatable
def to_msgpack(*args, &block); end
+ def to_options(*args, &block); end
+
+ def to_options!(*args, &block); end
+
def to_plist(*args, &block); end
def to_proc(*args, &block); end
@@ -26922,8 +26997,16 @@ module RuboCop::AST::CollectionNode
def pluck(*args, &block); end
+ def to_default_s(*args, &block); end
+
+ def to_formatted_s(*args, &block); end
+
def to_msgpack(*args, &block); end
+ def to_sentence(*args, &block); end
+
+ def to_xml(*args, &block); end
+
def without(*args, &block); end
end
@@ -29704,7 +29787,7 @@ end
class Time
def self.===(other); end
- def self.at_with_coercion(*args, **kwargs); end
+ def self.at_with_coercion(*args); end
def self.at_without_coercion(*_); end
@@ -29786,10 +29869,6 @@ module Tty
def self.yellow(); end
end
-module URI
- include ::URI::RFC2396_REGEXP
-end
-
class URI::FTP
def buffer_open(buf, proxy, options); end
end
@@ -29799,20 +29878,9 @@ class URI::FTP
end
class URI::File
- def check_password(user); end
-
- def check_user(user); end
-
- def check_userinfo(user); end
-
- def set_userinfo(v); end
- COMPONENT = ::T.let(nil, ::T.untyped)
DEFAULT_PORT = ::T.let(nil, ::T.untyped)
end
-class URI::File
-end
-
class URI::HTTP
def buffer_open(buf, proxy, options); end
end
@@ -29855,10 +29923,6 @@ class URI::MailTo
def initialize(*arg); end
end
-URI::Parser = URI::RFC2396_Parser
-
-URI::REGEXP = URI::RFC2396_REGEXP
-
class URI::RFC2396_Parser
def initialize(opts=T.unsafe(nil)); end
end
@@ -29879,7 +29943,6 @@ module URI::Util
end
module URI
- extend ::URI::Escape
def self.get_encoding(label); end
end
diff --git a/Library/Homebrew/vendor/bundle/bundler/setup.rb b/Library/Homebrew/vendor/bundle/bundler/setup.rb
index c7dee16ff2..7437a039bc 100644
--- a/Library/Homebrew/vendor/bundle/bundler/setup.rb
+++ b/Library/Homebrew/vendor/bundle/bundler/setup.rb
@@ -8,7 +8,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/i18n-1.8.10/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/minitest-5.14.4/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/tzinfo-2.0.4/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/zeitwerk-2.4.2/lib"
-$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/activesupport-6.1.3.2/lib"
+$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/activesupport-6.1.4/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/public_suffix-4.0.6/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/addressable-2.7.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ast-2.4.2/lib"
@@ -77,6 +77,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/sorbet-static-0.5.627
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/sorbet-0.5.6274/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-sorbet-1.8.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-wait-0.0.9/lib"
+$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec_junit_formatter-0.4.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-ast-1.7.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-progressbar-1.11.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unicode-display_width-2.0.0/lib"
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/actionable_error.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/actionable_error.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/actionable_error.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/actionable_error.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/array_inquirer.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/array_inquirer.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/array_inquirer.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/array_inquirer.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/backtrace_cleaner.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/backtrace_cleaner.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/backtrace_cleaner.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/backtrace_cleaner.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/benchmarkable.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/benchmarkable.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/benchmarkable.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/benchmarkable.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/builder.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/builder.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/builder.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/builder.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/callbacks.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/callbacks.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/callbacks.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/callbacks.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/concern.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/concern.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/concern.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/concern.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/configurable.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/configurable.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/configurable.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/configurable.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/configuration_file.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/configuration_file.rb
similarity index 87%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/configuration_file.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/configuration_file.rb
index bf8d209a6c..024f0e0bda 100644
--- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/configuration_file.rb
+++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/configuration_file.rb
@@ -19,7 +19,12 @@ module ActiveSupport
end
def parse(context: nil, **options)
- YAML.load(render(context), **options) || {}
+ source = render(context)
+ if YAML.respond_to?(:unsafe_load)
+ YAML.unsafe_load(source, **options) || {}
+ else
+ YAML.load(source, **options) || {}
+ end
rescue Psych::SyntaxError => error
raise "YAML syntax error occurred while parsing #{@content_path}. " \
"Please note that YAML must be consistently indented using spaces. Tabs are not allowed. " \
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/access.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/access.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/access.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/access.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/conversions.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/conversions.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/conversions.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/extract.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/extract.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/extract.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/extract.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/extract_options.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/extract_options.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/extract_options.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/extract_options.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/grouping.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/grouping.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/grouping.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/grouping.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/inquiry.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/inquiry.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/inquiry.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/inquiry.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/wrap.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/wrap.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/array/wrap.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/array/wrap.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/benchmark.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/benchmark.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/benchmark.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/benchmark.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/big_decimal.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/big_decimal.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/big_decimal.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/big_decimal.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/big_decimal/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/big_decimal/conversions.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/big_decimal/conversions.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/big_decimal/conversions.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/class.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/class.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/class.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/class.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/class/attribute.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/class/attribute.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/class/attribute.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/class/attribute.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/class/attribute_accessors.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/class/attribute_accessors.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/class/attribute_accessors.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/class/attribute_accessors.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/class/subclasses.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/class/subclasses.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/class/subclasses.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/class/subclasses.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date/acts_like.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date/acts_like.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date/acts_like.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date/acts_like.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date/blank.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date/blank.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date/blank.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date/blank.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date/calculations.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date/calculations.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date/calculations.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date/calculations.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date/conversions.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date/conversions.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date/conversions.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date/zones.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date/zones.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date/zones.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date/zones.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_and_time/calculations.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_and_time/calculations.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_and_time/calculations.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_and_time/calculations.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_and_time/compatibility.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_and_time/compatibility.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_and_time/compatibility.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_and_time/compatibility.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_and_time/zones.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_and_time/zones.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_and_time/zones.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_and_time/zones.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time/acts_like.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time/acts_like.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time/acts_like.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time/acts_like.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time/blank.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time/blank.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time/blank.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time/blank.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time/calculations.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time/calculations.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time/calculations.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time/calculations.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time/compatibility.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time/compatibility.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time/compatibility.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time/compatibility.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time/conversions.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/date_time/conversions.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/date_time/conversions.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/digest.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/digest.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/digest.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/digest.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/digest/uuid.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/digest/uuid.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/digest/uuid.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/digest/uuid.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/enumerable.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/enumerable.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/enumerable.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/enumerable.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/file.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/file.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/file.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/file.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/file/atomic.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/file/atomic.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/file/atomic.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/file/atomic.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/conversions.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/conversions.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/conversions.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/deep_merge.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/deep_merge.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/deep_merge.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/deep_merge.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/deep_transform_values.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/deep_transform_values.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/deep_transform_values.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/deep_transform_values.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/except.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/except.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/except.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/except.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/indifferent_access.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/indifferent_access.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/indifferent_access.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/indifferent_access.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/keys.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/keys.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/keys.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/keys.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/reverse_merge.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/reverse_merge.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/reverse_merge.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/reverse_merge.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/slice.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/slice.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/hash/slice.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/hash/slice.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/integer.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/integer.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/integer.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/integer.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/integer/inflections.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/integer/inflections.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/integer/inflections.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/integer/inflections.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/integer/multiple.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/integer/multiple.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/integer/multiple.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/integer/multiple.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/integer/time.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/integer/time.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/integer/time.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/integer/time.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/kernel.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/kernel.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/kernel.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/kernel.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/kernel/concern.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/kernel/concern.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/kernel/concern.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/kernel/concern.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/kernel/reporting.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/kernel/reporting.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/kernel/reporting.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/kernel/reporting.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/kernel/singleton_class.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/kernel/singleton_class.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/kernel/singleton_class.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/kernel/singleton_class.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/load_error.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/load_error.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/load_error.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/load_error.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/marshal.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/marshal.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/marshal.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/marshal.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/aliasing.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/aliasing.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/aliasing.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/aliasing.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/anonymous.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/anonymous.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/anonymous.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/anonymous.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/attr_internal.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/attr_internal.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/attr_internal.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/attr_internal.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/attribute_accessors.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/attribute_accessors.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/attribute_accessors.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/attribute_accessors.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/concerning.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/concerning.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/concerning.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/concerning.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/delegation.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/delegation.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/delegation.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/delegation.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/deprecation.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/deprecation.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/deprecation.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/deprecation.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/introspection.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/introspection.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/introspection.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/introspection.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/redefine_method.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/redefine_method.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/redefine_method.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/redefine_method.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/remove_method.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/remove_method.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/module/remove_method.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/module/remove_method.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/name_error.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/name_error.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/name_error.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/name_error.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/numeric.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/numeric.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/numeric.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/numeric.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/numeric/bytes.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/numeric/bytes.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/numeric/bytes.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/numeric/bytes.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/numeric/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/numeric/conversions.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/numeric/conversions.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/numeric/conversions.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/numeric/time.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/numeric/time.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/numeric/time.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/numeric/time.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/acts_like.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/acts_like.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/acts_like.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/acts_like.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/blank.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/blank.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/blank.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/blank.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/conversions.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/conversions.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/conversions.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/deep_dup.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/deep_dup.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/deep_dup.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/deep_dup.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/duplicable.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/duplicable.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/duplicable.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/duplicable.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/inclusion.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/inclusion.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/inclusion.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/inclusion.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/instance_variables.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/instance_variables.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/instance_variables.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/instance_variables.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/json.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/json.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/json.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/json.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/to_param.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/to_param.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/to_param.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/to_param.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/to_query.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/to_query.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/to_query.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/to_query.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/try.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/try.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/try.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/try.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/with_options.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/with_options.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/object/with_options.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/object/with_options.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range/compare_range.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range/compare_range.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range/compare_range.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range/compare_range.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range/conversions.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range/conversions.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range/conversions.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range/each.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range/each.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range/each.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range/each.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range/include_time_with_zone.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range/include_time_with_zone.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range/include_time_with_zone.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range/include_time_with_zone.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range/overlaps.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range/overlaps.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/range/overlaps.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/range/overlaps.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/regexp.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/regexp.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/regexp.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/regexp.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/securerandom.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/securerandom.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/securerandom.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/securerandom.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/access.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/access.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/access.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/access.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/behavior.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/behavior.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/behavior.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/behavior.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/conversions.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/conversions.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/conversions.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/exclude.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/exclude.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/exclude.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/exclude.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/filters.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/filters.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/filters.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/filters.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/indent.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/indent.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/indent.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/indent.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/inflections.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/inflections.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/inflections.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/inflections.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/inquiry.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/inquiry.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/inquiry.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/inquiry.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/multibyte.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/multibyte.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/multibyte.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/multibyte.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/output_safety.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/output_safety.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/output_safety.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/output_safety.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/starts_ends_with.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/starts_ends_with.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/starts_ends_with.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/starts_ends_with.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/strip.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/strip.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/strip.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/strip.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/zones.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/zones.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/string/zones.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/string/zones.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/symbol.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/symbol.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/symbol.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/symbol.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/symbol/starts_ends_with.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/symbol/starts_ends_with.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/symbol/starts_ends_with.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/symbol/starts_ends_with.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time/acts_like.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time/acts_like.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time/acts_like.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time/acts_like.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time/calculations.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time/calculations.rb
similarity index 98%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time/calculations.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time/calculations.rb
index c3dba6d1e9..d9a130d379 100644
--- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time/calculations.rb
+++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time/calculations.rb
@@ -42,14 +42,8 @@ class Time
# Layers additional behavior on Time.at so that ActiveSupport::TimeWithZone and DateTime
# instances can be used when called with a single argument
- def at_with_coercion(*args, **kwargs)
- if args.size != 1
- if kwargs.empty?
- return at_without_coercion(*args)
- else
- return at_without_coercion(*args, **kwargs)
- end
- end
+ def at_with_coercion(*args)
+ return at_without_coercion(*args) if args.size != 1
# Time.at can be called with a time or numerical value
time_or_number = args.first
@@ -62,6 +56,7 @@ class Time
at_without_coercion(time_or_number)
end
end
+ ruby2_keywords(:at_with_coercion) if respond_to?(:ruby2_keywords, true)
alias_method :at_without_coercion, :at
alias_method :at, :at_with_coercion
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time/compatibility.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time/compatibility.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time/compatibility.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time/compatibility.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time/conversions.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time/conversions.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time/conversions.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time/zones.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time/zones.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/time/zones.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/time/zones.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/uri.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/uri.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/core_ext/uri.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/core_ext/uri.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/current_attributes.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/current_attributes.rb
similarity index 99%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/current_attributes.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/current_attributes.rb
index d2d16b2629..9be8f881c0 100644
--- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/current_attributes.rb
+++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/current_attributes.rb
@@ -2,6 +2,7 @@
require "active_support/callbacks"
require "active_support/core_ext/enumerable"
+require "active_support/core_ext/module/delegation"
module ActiveSupport
# Abstract super class that provides a thread-isolated attributes singleton, which resets automatically
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/current_attributes/test_helper.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/current_attributes/test_helper.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/current_attributes/test_helper.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/current_attributes/test_helper.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/behaviors.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/behaviors.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/behaviors.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/behaviors.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/constant_accessor.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/constant_accessor.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/constant_accessor.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/constant_accessor.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/disallowed.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/disallowed.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/disallowed.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/disallowed.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/instance_delegator.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/instance_delegator.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/instance_delegator.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/instance_delegator.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/method_wrappers.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/method_wrappers.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/method_wrappers.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/method_wrappers.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/proxy_wrappers.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/proxy_wrappers.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/proxy_wrappers.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/proxy_wrappers.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/reporting.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/reporting.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/deprecation/reporting.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/deprecation/reporting.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/descendants_tracker.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/descendants_tracker.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/descendants_tracker.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/descendants_tracker.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/digest.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/digest.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/digest.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/digest.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/duration.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/duration.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/duration.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/duration.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/encrypted_configuration.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/encrypted_configuration.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/encrypted_configuration.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/encrypted_configuration.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/encrypted_file.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/encrypted_file.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/encrypted_file.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/encrypted_file.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/environment_inquirer.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/environment_inquirer.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/environment_inquirer.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/environment_inquirer.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/evented_file_update_checker.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/evented_file_update_checker.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/evented_file_update_checker.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/evented_file_update_checker.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/execution_wrapper.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/execution_wrapper.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/execution_wrapper.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/execution_wrapper.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/executor.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/executor.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/executor.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/executor.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/file_update_checker.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/file_update_checker.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/file_update_checker.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/file_update_checker.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/fork_tracker.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/fork_tracker.rb
similarity index 89%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/fork_tracker.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/fork_tracker.rb
index 2020f79c2d..2f250378ba 100644
--- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/fork_tracker.rb
+++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/fork_tracker.rb
@@ -16,6 +16,7 @@ module ActiveSupport
pid
end
end
+ ruby2_keywords(:fork) if respond_to?(:ruby2_keywords, true)
end
module CoreExtPrivate
@@ -25,6 +26,7 @@ module ActiveSupport
def fork(*)
super
end
+ ruby2_keywords(:fork) if respond_to?(:ruby2_keywords, true)
end
@pid = Process.pid
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/gem_version.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/gem_version.rb
similarity index 91%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/gem_version.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/gem_version.rb
index 219c396baa..7c6c62bdb8 100644
--- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/gem_version.rb
+++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/gem_version.rb
@@ -9,8 +9,8 @@ module ActiveSupport
module VERSION
MAJOR = 6
MINOR = 1
- TINY = 3
- PRE = "2"
+ TINY = 4
+ PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/gzip.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/gzip.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/gzip.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/gzip.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/hash_with_indifferent_access.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/hash_with_indifferent_access.rb
similarity index 97%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/hash_with_indifferent_access.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/hash_with_indifferent_access.rb
index 71198ef10f..4e574cd059 100644
--- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/hash_with_indifferent_access.rb
+++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/hash_with_indifferent_access.rb
@@ -3,6 +3,7 @@
require "active_support/core_ext/hash/keys"
require "active_support/core_ext/hash/reverse_merge"
require "active_support/core_ext/hash/except"
+require "active_support/core_ext/hash/slice"
module ActiveSupport
# Implements a hash where keys :foo and "foo" are considered
@@ -293,6 +294,10 @@ module ActiveSupport
super(convert_key(key))
end
+ # Returns a hash with indifferent access that includes everything except given keys.
+ # hash = { a: "x", b: "y", c: 10 }.with_indifferent_access
+ # hash.except(:a, "b") # => {c: 10}.with_indifferent_access
+ # hash # => { a: "x", b: "y", c: 10 }.with_indifferent_access
def except(*keys)
slice(*self.keys - keys.map { |key| convert_key(key) })
end
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/i18n.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/i18n.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/i18n.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/i18n.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/i18n_railtie.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/i18n_railtie.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/i18n_railtie.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/i18n_railtie.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/inflections.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/inflections.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/inflections.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/inflections.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/inflector.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/inflector.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/inflector.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/inflector.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/inflector/inflections.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/inflector/inflections.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/inflector/inflections.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/inflector/inflections.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/inflector/methods.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/inflector/methods.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/inflector/methods.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/inflector/methods.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/inflector/transliterate.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/inflector/transliterate.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/inflector/transliterate.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/inflector/transliterate.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/key_generator.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/key_generator.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/key_generator.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/key_generator.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/lazy_load_hooks.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/lazy_load_hooks.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/lazy_load_hooks.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/lazy_load_hooks.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/locale/en.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/locale/en.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/locale/en.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/locale/en.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/locale/en.yml b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/locale/en.yml
similarity index 99%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/locale/en.yml
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/locale/en.yml
index c4050517d5..725ec3532c 100644
--- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/locale/en.yml
+++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/locale/en.yml
@@ -45,7 +45,7 @@ en:
# Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
precision: 3
# Determine how rounding is performed (see BigDecimal::mode)
- round_mode: !ruby/sym default
+ round_mode: default
# If set to true, precision will mean the number of significant digits instead
# of the number of decimal digits (1234 with precision 2 becomes 1200, 1.23543 becomes 1.2)
significant: false
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/logger.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/logger.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/logger.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/logger.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/logger_silence.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/logger_silence.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/logger_silence.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/logger_silence.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/logger_thread_safe_level.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/logger_thread_safe_level.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/logger_thread_safe_level.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/logger_thread_safe_level.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/message_encryptor.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/message_encryptor.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/message_encryptor.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/message_encryptor.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/message_verifier.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/message_verifier.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/message_verifier.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/message_verifier.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/multibyte.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/multibyte.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/multibyte.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/multibyte.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/notifications.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/notifications.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/notifications.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/notifications.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/notifications/fanout.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/notifications/fanout.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/notifications/fanout.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/notifications/fanout.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/notifications/instrumenter.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/notifications/instrumenter.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/notifications/instrumenter.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/notifications/instrumenter.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/option_merger.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/option_merger.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/option_merger.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/option_merger.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/ordered_hash.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/ordered_hash.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/ordered_hash.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/ordered_hash.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/ordered_options.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/ordered_options.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/ordered_options.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/ordered_options.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/parameter_filter.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/parameter_filter.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/parameter_filter.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/parameter_filter.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/per_thread_registry.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/per_thread_registry.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/per_thread_registry.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/per_thread_registry.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/proxy_object.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/proxy_object.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/proxy_object.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/proxy_object.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/rails.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/rails.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/rails.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/rails.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/railtie.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/railtie.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/railtie.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/railtie.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/reloader.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/reloader.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/reloader.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/reloader.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/rescuable.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/rescuable.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/rescuable.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/rescuable.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/secure_compare_rotator.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/secure_compare_rotator.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/secure_compare_rotator.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/secure_compare_rotator.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/security_utils.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/security_utils.rb
similarity index 94%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/security_utils.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/security_utils.rb
index 4eeac896f7..aa00474448 100644
--- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/security_utils.rb
+++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/security_utils.rb
@@ -31,7 +31,7 @@ module ActiveSupport
# the secret length. This should be considered when using secure_compare
# to compare weak, short secrets to user input.
def secure_compare(a, b)
- a.length == b.length && fixed_length_secure_compare(a, b)
+ a.bytesize == b.bytesize && fixed_length_secure_compare(a, b)
end
module_function :secure_compare
end
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/string_inquirer.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/string_inquirer.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/string_inquirer.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/string_inquirer.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/subscriber.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/subscriber.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/subscriber.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/subscriber.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/tagged_logging.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/tagged_logging.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/tagged_logging.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/tagged_logging.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/test_case.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/test_case.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/test_case.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/test_case.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/time.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/time.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/time.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/time.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/time_with_zone.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/time_with_zone.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/time_with_zone.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/time_with_zone.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/values/time_zone.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/values/time_zone.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/values/time_zone.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/values/time_zone.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/version.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/version.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/version.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/version.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/jdom.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/jdom.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/jdom.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/jdom.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/libxml.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/libxml.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/libxml.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/libxml.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/libxmlsax.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/libxmlsax.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/libxmlsax.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/libxmlsax.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/nokogiri.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/nokogiri.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/nokogiri.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/nokogiri.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/nokogirisax.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/nokogirisax.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/nokogirisax.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/nokogirisax.rb
diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/rexml.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/rexml.rb
similarity index 100%
rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.3.2/lib/active_support/xml_mini/rexml.rb
rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4/lib/active_support/xml_mini/rexml.rb