Merge pull request #11601 from Homebrew/dependabot/bundler/Library/Homebrew/activesupport-6.1.4
build(deps): bump activesupport from 6.1.3.2 to 6.1.4 in /Library/Homebrew
This commit is contained in:
commit
51cfd73622
@ -1,7 +1,7 @@
|
|||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
activesupport (6.1.3.2)
|
activesupport (6.1.4)
|
||||||
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)
|
||||||
|
@ -5,11 +5,15 @@
|
|||||||
# typed: false
|
# typed: false
|
||||||
|
|
||||||
module ActiveSupport
|
module ActiveSupport
|
||||||
extend(::ActiveSupport::LazyLoadHooks)
|
extend ::ActiveSupport::LazyLoadHooks
|
||||||
|
end
|
||||||
|
|
||||||
|
module ActiveSupport::BigDecimalWithDefaultFormat
|
||||||
|
def to_s(format = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
module ActiveSupport::Inflector
|
module ActiveSupport::Inflector
|
||||||
extend(::ActiveSupport::Inflector)
|
extend ::ActiveSupport::Inflector
|
||||||
|
|
||||||
def camelize(term, uppercase_first_letter = T.unsafe(nil)); end
|
def camelize(term, uppercase_first_letter = T.unsafe(nil)); end
|
||||||
def classify(table_name); end
|
def classify(table_name); end
|
||||||
@ -81,6 +85,55 @@ class ActiveSupport::Inflector::Inflections::Uncountables < ::Array
|
|||||||
def to_regex(string); end
|
def to_regex(string); end
|
||||||
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
|
module ActiveSupport::LazyLoadHooks
|
||||||
def on_load(name, options = T.unsafe(nil), &block); end
|
def on_load(name, options = T.unsafe(nil), &block); end
|
||||||
def run_load_hooks(name, base = T.unsafe(nil)); end
|
def run_load_hooks(name, base = T.unsafe(nil)); end
|
||||||
@ -103,7 +156,7 @@ module ActiveSupport::Multibyte
|
|||||||
end
|
end
|
||||||
|
|
||||||
class ActiveSupport::Multibyte::Chars
|
class ActiveSupport::Multibyte::Chars
|
||||||
include(::Comparable)
|
include ::Comparable
|
||||||
|
|
||||||
def initialize(string); end
|
def initialize(string); end
|
||||||
|
|
||||||
@ -136,7 +189,7 @@ class ActiveSupport::Multibyte::Chars
|
|||||||
end
|
end
|
||||||
|
|
||||||
module ActiveSupport::Multibyte::Unicode
|
module ActiveSupport::Multibyte::Unicode
|
||||||
extend(::ActiveSupport::Multibyte::Unicode)
|
extend ::ActiveSupport::Multibyte::Unicode
|
||||||
|
|
||||||
def compose(codepoints); end
|
def compose(codepoints); end
|
||||||
def decompose(type, codepoints); end
|
def decompose(type, codepoints); end
|
||||||
@ -151,53 +204,8 @@ end
|
|||||||
|
|
||||||
ActiveSupport::Multibyte::Unicode::UNICODE_VERSION = T.let(T.unsafe(nil), String)
|
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
|
class ActiveSupport::TimeZone
|
||||||
include(::Comparable)
|
include ::Comparable
|
||||||
|
|
||||||
def initialize(name, utc_offset = T.unsafe(nil), tzinfo = T.unsafe(nil)); end
|
def initialize(name, utc_offset = T.unsafe(nil), tzinfo = T.unsafe(nil)); end
|
||||||
|
|
||||||
@ -251,32 +259,33 @@ class ActiveSupport::TimeZone
|
|||||||
end
|
end
|
||||||
|
|
||||||
ActiveSupport::TimeZone::MAPPING = T.let(T.unsafe(nil), Hash)
|
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
|
module ActiveSupport::ToJsonWithActiveSupportEncoder
|
||||||
def to_json(options = T.unsafe(nil)); end
|
def to_json(options = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
class Array
|
class Array
|
||||||
include(::Enumerable)
|
include ::Enumerable
|
||||||
include(::JSON::Ext::Generator::GeneratorMethods::Array)
|
include ::JSON::Ext::Generator::GeneratorMethods::Array
|
||||||
include(::Plist::Emit)
|
include ::Plist::Emit
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
class BigDecimal < ::Numeric
|
class BigDecimal < ::Numeric
|
||||||
include(::ActiveSupport::BigDecimalWithDefaultFormat)
|
include ::ActiveSupport::BigDecimalWithDefaultFormat
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
BigDecimal::EXCEPTION_NaN = T.let(T.unsafe(nil), Integer)
|
BigDecimal::EXCEPTION_NaN = T.let(T.unsafe(nil), Integer)
|
||||||
|
|
||||||
BigDecimal::VERSION = T.let(T.unsafe(nil), String)
|
BigDecimal::VERSION = T.let(T.unsafe(nil), String)
|
||||||
|
|
||||||
class Date
|
class Date
|
||||||
include(::Comparable)
|
include ::Comparable
|
||||||
include(::DateAndTime::Zones)
|
include ::DateAndTime::Zones
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
def inspect; end
|
def inspect; end
|
||||||
@ -288,9 +297,7 @@ class Date
|
|||||||
end
|
end
|
||||||
|
|
||||||
Date::DATE_FORMATS = T.let(T.unsafe(nil), Hash)
|
Date::DATE_FORMATS = T.let(T.unsafe(nil), Hash)
|
||||||
|
module DateAndTime; end
|
||||||
module DateAndTime
|
|
||||||
end
|
|
||||||
|
|
||||||
module DateAndTime::Zones
|
module DateAndTime::Zones
|
||||||
def in_time_zone(zone = T.unsafe(nil)); end
|
def in_time_zone(zone = T.unsafe(nil)); end
|
||||||
@ -369,22 +376,22 @@ class Exception
|
|||||||
end
|
end
|
||||||
|
|
||||||
class FalseClass
|
class FalseClass
|
||||||
include(::JSON::Ext::Generator::GeneratorMethods::FalseClass)
|
include ::JSON::Ext::Generator::GeneratorMethods::FalseClass
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
def blank?; end
|
def blank?; end
|
||||||
end
|
end
|
||||||
|
|
||||||
class Float < ::Numeric
|
class Float < ::Numeric
|
||||||
include(::JSON::Ext::Generator::GeneratorMethods::Float)
|
include ::JSON::Ext::Generator::GeneratorMethods::Float
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
class Hash
|
class Hash
|
||||||
include(::Enumerable)
|
include ::Enumerable
|
||||||
include(::JSON::Ext::Generator::GeneratorMethods::Hash)
|
include ::JSON::Ext::Generator::GeneratorMethods::Hash
|
||||||
include(::Plist::Emit)
|
include ::Plist::Emit
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
def deep_merge(other_hash, &block); end
|
def deep_merge(other_hash, &block); end
|
||||||
@ -396,18 +403,33 @@ class Hash
|
|||||||
end
|
end
|
||||||
|
|
||||||
class IO
|
class IO
|
||||||
include(::Enumerable)
|
include ::Enumerable
|
||||||
include(::File::Constants)
|
include ::File::Constants
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
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
|
IO::EWOULDBLOCKWaitWritable = IO::EAGAINWaitWritable
|
||||||
|
|
||||||
class IPAddr
|
class IPAddr
|
||||||
include(::Comparable)
|
include ::Comparable
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
@ -428,33 +450,33 @@ class Module
|
|||||||
end
|
end
|
||||||
|
|
||||||
Module::DELEGATION_RESERVED_KEYWORDS = T.let(T.unsafe(nil), Array)
|
Module::DELEGATION_RESERVED_KEYWORDS = T.let(T.unsafe(nil), Array)
|
||||||
|
|
||||||
Module::DELEGATION_RESERVED_METHOD_NAMES = T.let(T.unsafe(nil), Set)
|
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)
|
Module::RUBY_RESERVED_KEYWORDS = T.let(T.unsafe(nil), Array)
|
||||||
|
|
||||||
|
class NameError < ::StandardError
|
||||||
|
include ::DidYouMean::Correctable
|
||||||
|
end
|
||||||
|
|
||||||
class NilClass
|
class NilClass
|
||||||
include(::JSON::Ext::Generator::GeneratorMethods::NilClass)
|
include ::JSON::Ext::Generator::GeneratorMethods::NilClass
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
def blank?; end
|
def blank?; end
|
||||||
end
|
end
|
||||||
|
|
||||||
class Numeric
|
class Numeric
|
||||||
include(::Comparable)
|
include ::Comparable
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
def blank?; end
|
def blank?; end
|
||||||
end
|
end
|
||||||
|
|
||||||
class Object < ::BasicObject
|
class Object < ::BasicObject
|
||||||
include(::ActiveSupport::ToJsonWithActiveSupportEncoder)
|
include ::ActiveSupport::ToJsonWithActiveSupportEncoder
|
||||||
include(::Kernel)
|
include ::Kernel
|
||||||
include(::JSON::Ext::Generator::GeneratorMethods::Object)
|
include ::JSON::Ext::Generator::GeneratorMethods::Object
|
||||||
include(::PP::ObjectMixin)
|
include ::PP::ObjectMixin
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
def blank?; end
|
def blank?; end
|
||||||
@ -473,7 +495,7 @@ class Process::Status
|
|||||||
end
|
end
|
||||||
|
|
||||||
class Range
|
class Range
|
||||||
include(::Enumerable)
|
include ::Enumerable
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
@ -517,11 +539,11 @@ class Regexp::Token < ::Struct
|
|||||||
end
|
end
|
||||||
|
|
||||||
class String
|
class String
|
||||||
include(::Comparable)
|
include ::Comparable
|
||||||
include(::JSON::Ext::Generator::GeneratorMethods::String)
|
include ::JSON::Ext::Generator::GeneratorMethods::String
|
||||||
include(::Colorize::InstanceMethods)
|
include ::Colorize::InstanceMethods
|
||||||
extend(::JSON::Ext::Generator::GeneratorMethods::String::Extend)
|
extend ::JSON::Ext::Generator::GeneratorMethods::String::Extend
|
||||||
extend(::Colorize::ClassMethods)
|
extend ::Colorize::ClassMethods
|
||||||
|
|
||||||
def acts_like_string?; end
|
def acts_like_string?; end
|
||||||
def as_json(options = T.unsafe(nil)); 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 titlecase(keep_id_suffix: T.unsafe(nil)); end
|
||||||
def titleize(keep_id_suffix: T.unsafe(nil)); end
|
def titleize(keep_id_suffix: T.unsafe(nil)); end
|
||||||
def to(position); end
|
def to(position); end
|
||||||
|
|
||||||
|
sig { returns(String) }
|
||||||
def underscore; end
|
def underscore; end
|
||||||
|
|
||||||
def upcase_first; end
|
def upcase_first; end
|
||||||
end
|
end
|
||||||
|
|
||||||
String::BLANK_RE = T.let(T.unsafe(nil), Regexp)
|
String::BLANK_RE = T.let(T.unsafe(nil), Regexp)
|
||||||
|
|
||||||
String::ENCODED_BLANKS = T.let(T.unsafe(nil), Concurrent::Map)
|
String::ENCODED_BLANKS = T.let(T.unsafe(nil), Concurrent::Map)
|
||||||
|
|
||||||
class Struct
|
class Struct
|
||||||
include(::Enumerable)
|
include ::Enumerable
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
Struct::Group = Etc::Group
|
Struct::Group = Etc::Group
|
||||||
|
|
||||||
Struct::HTMLElementDescription = Struct
|
Struct::HTMLElementDescription = Struct
|
||||||
|
|
||||||
Struct::Passwd = Etc::Passwd
|
Struct::Passwd = Etc::Passwd
|
||||||
|
|
||||||
Struct::Tms = Process::Tms
|
Struct::Tms = Process::Tms
|
||||||
|
|
||||||
class Symbol
|
class Symbol
|
||||||
include(::Comparable)
|
include ::Comparable
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
def end_with?(*suffixes); end
|
def end_with?(*suffixes); end
|
||||||
@ -582,7 +603,7 @@ class Symbol
|
|||||||
end
|
end
|
||||||
|
|
||||||
class Time
|
class Time
|
||||||
include(::Comparable)
|
include ::Comparable
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
def blank?; end
|
def blank?; end
|
||||||
@ -594,15 +615,44 @@ end
|
|||||||
Time::DATE_FORMATS = T.let(T.unsafe(nil), Hash)
|
Time::DATE_FORMATS = T.let(T.unsafe(nil), Hash)
|
||||||
|
|
||||||
class TrueClass
|
class TrueClass
|
||||||
include(::JSON::Ext::Generator::GeneratorMethods::TrueClass)
|
include ::JSON::Ext::Generator::GeneratorMethods::TrueClass
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
def blank?; end
|
def blank?; end
|
||||||
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
|
class URI::Generic
|
||||||
include(::URI::RFC2396_REGEXP)
|
include ::URI::RFC2396_REGEXP
|
||||||
include(::URI)
|
include ::URI
|
||||||
|
|
||||||
def as_json(options = T.unsafe(nil)); end
|
def as_json(options = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
URI::Parser = URI::RFC2396_Parser
|
||||||
|
URI::REGEXP = URI::RFC2396_REGEXP
|
||||||
|
|
||||||
|
class URI::RFC2396_Parser
|
||||||
|
include ::URI::RFC2396_REGEXP
|
||||||
|
end
|
@ -127,7 +127,7 @@ class ActiveSupport::Cache::FileStore
|
|||||||
include ::ActiveSupport::Cache::Strategy::LocalCache
|
include ::ActiveSupport::Cache::Strategy::LocalCache
|
||||||
def cache_path(); end
|
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)
|
DIR_FORMATTER = ::T.let(nil, ::T.untyped)
|
||||||
FILENAME_MAX_SIZE = ::T.let(nil, ::T.untyped)
|
FILENAME_MAX_SIZE = ::T.let(nil, ::T.untyped)
|
||||||
FILEPATH_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
|
def self.extended(base); end
|
||||||
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
|
module ActiveSupport::Configurable
|
||||||
def config(); end
|
def config(); end
|
||||||
end
|
end
|
||||||
@ -532,6 +562,14 @@ class ActiveSupport::CurrentAttributes
|
|||||||
def _reset_callbacks(); end
|
def _reset_callbacks(); end
|
||||||
|
|
||||||
def _run_reset_callbacks(&block); end
|
def _run_reset_callbacks(&block); end
|
||||||
|
|
||||||
|
def attributes(); end
|
||||||
|
|
||||||
|
def attributes=(attributes); end
|
||||||
|
|
||||||
|
def reset(); end
|
||||||
|
|
||||||
|
def set(set_attributes); end
|
||||||
end
|
end
|
||||||
|
|
||||||
class ActiveSupport::CurrentAttributes
|
class ActiveSupport::CurrentAttributes
|
||||||
@ -553,9 +591,17 @@ class ActiveSupport::CurrentAttributes
|
|||||||
|
|
||||||
def self.before_reset(&block); end
|
def self.before_reset(&block); end
|
||||||
|
|
||||||
|
def self.clear_all(); end
|
||||||
|
|
||||||
def self.instance(); end
|
def self.instance(); end
|
||||||
|
|
||||||
|
def self.reset(*args, &block); end
|
||||||
|
|
||||||
|
def self.reset_all(); end
|
||||||
|
|
||||||
def self.resets(&block); end
|
def self.resets(&block); end
|
||||||
|
|
||||||
|
def self.set(*args, &block); end
|
||||||
end
|
end
|
||||||
|
|
||||||
module ActiveSupport::Dependencies
|
module ActiveSupport::Dependencies
|
||||||
@ -12489,7 +12535,6 @@ module NKF
|
|||||||
end
|
end
|
||||||
|
|
||||||
class NameError
|
class NameError
|
||||||
include ::DidYouMean::Correctable
|
|
||||||
def missing_name(); end
|
def missing_name(); end
|
||||||
|
|
||||||
def missing_name?(name); end
|
def missing_name?(name); end
|
||||||
@ -12610,9 +12655,13 @@ Net::HTTPServerErrorCode = Net::HTTPServerError
|
|||||||
|
|
||||||
Net::HTTPSession = Net::HTTP
|
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
|
class Net::HTTPURITooLong
|
||||||
HAS_BODY = ::T.let(nil, ::T.untyped)
|
HAS_BODY = ::T.let(nil, ::T.untyped)
|
||||||
@ -12762,11 +12811,11 @@ module OS
|
|||||||
end
|
end
|
||||||
|
|
||||||
class Object
|
class Object
|
||||||
include ::Minitest::Expectations
|
include ::ActiveSupport::Dependencies::Loadable
|
||||||
include ::ActiveSupport::Tryable
|
include ::ActiveSupport::Tryable
|
||||||
|
include ::Minitest::Expectations
|
||||||
include ::Utils::Curl
|
include ::Utils::Curl
|
||||||
include ::SystemCommand::Mixin
|
include ::SystemCommand::Mixin
|
||||||
include ::ActiveSupport::Dependencies::Loadable
|
|
||||||
include ::ActiveSupport::ForkTracker::CoreExtPrivate
|
include ::ActiveSupport::ForkTracker::CoreExtPrivate
|
||||||
include ::ActiveSupport::ForkTracker::CoreExt
|
include ::ActiveSupport::ForkTracker::CoreExt
|
||||||
def acts_like?(duck); end
|
def acts_like?(duck); end
|
||||||
@ -19145,6 +19194,8 @@ module RSpec::Core::HashImitatable
|
|||||||
|
|
||||||
def any?(*args, &block); end
|
def any?(*args, &block); end
|
||||||
|
|
||||||
|
def assert_valid_keys(*args, &block); end
|
||||||
|
|
||||||
def assoc(*args, &block); end
|
def assoc(*args, &block); end
|
||||||
|
|
||||||
def chain(*args, &block); end
|
def chain(*args, &block); end
|
||||||
@ -19179,6 +19230,18 @@ module RSpec::Core::HashImitatable
|
|||||||
|
|
||||||
def deep_merge!(*args, &block); end
|
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
|
||||||
|
|
||||||
def default=(*args, &block); end
|
def default=(*args, &block); end
|
||||||
@ -19361,8 +19424,16 @@ module RSpec::Core::HashImitatable
|
|||||||
|
|
||||||
def store(*args, &block); end
|
def store(*args, &block); end
|
||||||
|
|
||||||
|
def stringify_keys(*args, &block); end
|
||||||
|
|
||||||
|
def stringify_keys!(*args, &block); end
|
||||||
|
|
||||||
def sum(*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(*args, &block); end
|
||||||
|
|
||||||
def take_while(*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_msgpack(*args, &block); end
|
||||||
|
|
||||||
|
def to_options(*args, &block); end
|
||||||
|
|
||||||
|
def to_options!(*args, &block); end
|
||||||
|
|
||||||
def to_plist(*args, &block); end
|
def to_plist(*args, &block); end
|
||||||
|
|
||||||
def to_proc(*args, &block); end
|
def to_proc(*args, &block); end
|
||||||
@ -26922,8 +26997,16 @@ module RuboCop::AST::CollectionNode
|
|||||||
|
|
||||||
def pluck(*args, &block); end
|
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_msgpack(*args, &block); end
|
||||||
|
|
||||||
|
def to_sentence(*args, &block); end
|
||||||
|
|
||||||
|
def to_xml(*args, &block); end
|
||||||
|
|
||||||
def without(*args, &block); end
|
def without(*args, &block); end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -29704,7 +29787,7 @@ end
|
|||||||
class Time
|
class Time
|
||||||
def self.===(other); end
|
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
|
def self.at_without_coercion(*_); end
|
||||||
|
|
||||||
@ -29786,10 +29869,6 @@ module Tty
|
|||||||
def self.yellow(); end
|
def self.yellow(); end
|
||||||
end
|
end
|
||||||
|
|
||||||
module URI
|
|
||||||
include ::URI::RFC2396_REGEXP
|
|
||||||
end
|
|
||||||
|
|
||||||
class URI::FTP
|
class URI::FTP
|
||||||
def buffer_open(buf, proxy, options); end
|
def buffer_open(buf, proxy, options); end
|
||||||
end
|
end
|
||||||
@ -29799,20 +29878,9 @@ class URI::FTP
|
|||||||
end
|
end
|
||||||
|
|
||||||
class URI::File
|
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)
|
DEFAULT_PORT = ::T.let(nil, ::T.untyped)
|
||||||
end
|
end
|
||||||
|
|
||||||
class URI::File
|
|
||||||
end
|
|
||||||
|
|
||||||
class URI::HTTP
|
class URI::HTTP
|
||||||
def buffer_open(buf, proxy, options); end
|
def buffer_open(buf, proxy, options); end
|
||||||
end
|
end
|
||||||
@ -29855,10 +29923,6 @@ class URI::MailTo
|
|||||||
def initialize(*arg); end
|
def initialize(*arg); end
|
||||||
end
|
end
|
||||||
|
|
||||||
URI::Parser = URI::RFC2396_Parser
|
|
||||||
|
|
||||||
URI::REGEXP = URI::RFC2396_REGEXP
|
|
||||||
|
|
||||||
class URI::RFC2396_Parser
|
class URI::RFC2396_Parser
|
||||||
def initialize(opts=T.unsafe(nil)); end
|
def initialize(opts=T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
@ -29879,7 +29943,6 @@ module URI::Util
|
|||||||
end
|
end
|
||||||
|
|
||||||
module URI
|
module URI
|
||||||
extend ::URI::Escape
|
|
||||||
def self.get_encoding(label); end
|
def self.get_encoding(label); end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -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/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.4.2/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/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/addressable-2.7.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"
|
||||||
@ -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/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-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-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/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/ruby-progressbar-1.11.0/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unicode-display_width-2.0.0/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unicode-display_width-2.0.0/lib"
|
||||||
|
@ -19,7 +19,12 @@ module ActiveSupport
|
|||||||
end
|
end
|
||||||
|
|
||||||
def parse(context: nil, **options)
|
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
|
rescue Psych::SyntaxError => error
|
||||||
raise "YAML syntax error occurred while parsing #{@content_path}. " \
|
raise "YAML syntax error occurred while parsing #{@content_path}. " \
|
||||||
"Please note that YAML must be consistently indented using spaces. Tabs are not allowed. " \
|
"Please note that YAML must be consistently indented using spaces. Tabs are not allowed. " \
|
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