Merge pull request #12570 from Homebrew/dependabot/bundler/Library/Homebrew/activesupport-6.1.4.3
build(deps): bump activesupport from 6.1.4.1 to 6.1.4.3 in /Library/Homebrew
This commit is contained in:
commit
78a1b22648
@ -1,7 +1,7 @@
|
|||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
activesupport (6.1.4.1)
|
activesupport (6.1.4.3)
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
i18n (>= 1.6, < 2)
|
i18n (>= 1.6, < 2)
|
||||||
minitest (>= 5.1)
|
minitest (>= 5.1)
|
||||||
|
|||||||
@ -1,8 +1,10 @@
|
|||||||
|
# typed: false
|
||||||
|
|
||||||
# DO NOT EDIT MANUALLY
|
# DO NOT EDIT MANUALLY
|
||||||
# This is an autogenerated file for types exported from the `activesupport` gem.
|
# This is an autogenerated file for types exported from the `activesupport` gem.
|
||||||
# Please instead update this file by running `bin/tapioca gem activesupport`.
|
# Please instead update this file by running `bin/tapioca gem activesupport`.
|
||||||
|
|
||||||
# typed: false
|
::RUBY19 = T.let(T.unsafe(nil), TrueClass)
|
||||||
|
|
||||||
module ActiveSupport
|
module ActiveSupport
|
||||||
extend ::ActiveSupport::LazyLoadHooks
|
extend ::ActiveSupport::LazyLoadHooks
|
||||||
@ -26,13 +28,27 @@ end
|
|||||||
|
|
||||||
module ActiveSupport::ActionableError
|
module ActiveSupport::ActionableError
|
||||||
extend ::ActiveSupport::Concern
|
extend ::ActiveSupport::Concern
|
||||||
|
include GeneratedInstanceMethods
|
||||||
|
|
||||||
|
mixes_in_class_methods GeneratedClassMethods
|
||||||
mixes_in_class_methods ::ActiveSupport::ActionableError::ClassMethods
|
mixes_in_class_methods ::ActiveSupport::ActionableError::ClassMethods
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
def actions(error); end
|
def actions(error); end
|
||||||
def dispatch(error, name); end
|
def dispatch(error, name); end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
module GeneratedClassMethods
|
||||||
|
def _actions; end
|
||||||
|
def _actions=(value); end
|
||||||
|
def _actions?; end
|
||||||
|
end
|
||||||
|
|
||||||
|
module GeneratedInstanceMethods
|
||||||
|
def _actions; end
|
||||||
|
def _actions=(value); end
|
||||||
|
def _actions?; end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
module ActiveSupport::ActionableError::ClassMethods
|
module ActiveSupport::ActionableError::ClassMethods
|
||||||
@ -333,7 +349,9 @@ end
|
|||||||
|
|
||||||
module ActiveSupport::Callbacks
|
module ActiveSupport::Callbacks
|
||||||
extend ::ActiveSupport::Concern
|
extend ::ActiveSupport::Concern
|
||||||
|
include GeneratedInstanceMethods
|
||||||
|
|
||||||
|
mixes_in_class_methods GeneratedClassMethods
|
||||||
mixes_in_class_methods ::ActiveSupport::Callbacks::ClassMethods
|
mixes_in_class_methods ::ActiveSupport::Callbacks::ClassMethods
|
||||||
mixes_in_class_methods ::ActiveSupport::DescendantsTracker
|
mixes_in_class_methods ::ActiveSupport::DescendantsTracker
|
||||||
|
|
||||||
@ -342,6 +360,17 @@ module ActiveSupport::Callbacks
|
|||||||
private
|
private
|
||||||
|
|
||||||
def halted_callback_hook(filter, name); end
|
def halted_callback_hook(filter, name); end
|
||||||
|
|
||||||
|
module GeneratedClassMethods
|
||||||
|
def __callbacks; end
|
||||||
|
def __callbacks=(value); end
|
||||||
|
def __callbacks?; end
|
||||||
|
end
|
||||||
|
|
||||||
|
module GeneratedInstanceMethods
|
||||||
|
def __callbacks; end
|
||||||
|
def __callbacks?; end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
ActiveSupport::Callbacks::CALLBACK_FILTER_TYPES = T.let(T.unsafe(nil), Array)
|
ActiveSupport::Callbacks::CALLBACK_FILTER_TYPES = T.let(T.unsafe(nil), Array)
|
||||||
@ -2108,11 +2137,25 @@ end
|
|||||||
|
|
||||||
module ActiveSupport::Rescuable
|
module ActiveSupport::Rescuable
|
||||||
extend ::ActiveSupport::Concern
|
extend ::ActiveSupport::Concern
|
||||||
|
include GeneratedInstanceMethods
|
||||||
|
|
||||||
|
mixes_in_class_methods GeneratedClassMethods
|
||||||
mixes_in_class_methods ::ActiveSupport::Rescuable::ClassMethods
|
mixes_in_class_methods ::ActiveSupport::Rescuable::ClassMethods
|
||||||
|
|
||||||
def handler_for_rescue(exception); end
|
def handler_for_rescue(exception); end
|
||||||
def rescue_with_handler(exception); end
|
def rescue_with_handler(exception); end
|
||||||
|
|
||||||
|
module GeneratedClassMethods
|
||||||
|
def rescue_handlers; end
|
||||||
|
def rescue_handlers=(value); end
|
||||||
|
def rescue_handlers?; end
|
||||||
|
end
|
||||||
|
|
||||||
|
module GeneratedInstanceMethods
|
||||||
|
def rescue_handlers; end
|
||||||
|
def rescue_handlers=(value); end
|
||||||
|
def rescue_handlers?; end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
module ActiveSupport::Rescuable::ClassMethods
|
module ActiveSupport::Rescuable::ClassMethods
|
||||||
@ -2402,8 +2445,22 @@ end
|
|||||||
|
|
||||||
module ActiveSupport::Testing::FileFixtures
|
module ActiveSupport::Testing::FileFixtures
|
||||||
extend ::ActiveSupport::Concern
|
extend ::ActiveSupport::Concern
|
||||||
|
include GeneratedInstanceMethods
|
||||||
|
|
||||||
|
mixes_in_class_methods GeneratedClassMethods
|
||||||
|
|
||||||
def file_fixture(fixture_name); end
|
def file_fixture(fixture_name); end
|
||||||
|
|
||||||
|
module GeneratedClassMethods
|
||||||
|
def file_fixture_path; end
|
||||||
|
def file_fixture_path=(value); end
|
||||||
|
def file_fixture_path?; end
|
||||||
|
end
|
||||||
|
|
||||||
|
module GeneratedInstanceMethods
|
||||||
|
def file_fixture_path; end
|
||||||
|
def file_fixture_path?; end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
module ActiveSupport::Testing::Isolation
|
module ActiveSupport::Testing::Isolation
|
||||||
@ -3337,10 +3394,8 @@ end
|
|||||||
|
|
||||||
class String
|
class String
|
||||||
include ::Comparable
|
include ::Comparable
|
||||||
include ::Colorize::InstanceMethods
|
|
||||||
include ::JSON::Ext::Generator::GeneratorMethods::String
|
include ::JSON::Ext::Generator::GeneratorMethods::String
|
||||||
include ::MessagePack::CoreExt
|
include ::MessagePack::CoreExt
|
||||||
extend ::Colorize::ClassMethods
|
|
||||||
extend ::JSON::Ext::Generator::GeneratorMethods::String::Extend
|
extend ::JSON::Ext::Generator::GeneratorMethods::String::Extend
|
||||||
|
|
||||||
def acts_like_string?; end
|
def acts_like_string?; end
|
||||||
@ -8,7 +8,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/i18n-1.8.11/lib"
|
|||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/minitest-5.14.4/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/tzinfo-2.0.4/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/zeitwerk-2.5.1/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/zeitwerk-2.5.1/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/activesupport-6.1.4.1/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/activesupport-6.1.4.3/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/public_suffix-4.0.6/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/public_suffix-4.0.6/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/addressable-2.8.0/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/addressable-2.8.0/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ast-2.4.2/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ast-2.4.2/lib"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user