Update RBI files for activesupport.

This commit is contained in:
BrewTestBot 2022-04-27 18:15:40 +00:00
parent 8ea008eb11
commit 0cc880c038
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
2 changed files with 7 additions and 4 deletions

View File

@ -2784,6 +2784,7 @@ end
module ActiveSupport::VERSION; end module ActiveSupport::VERSION; end
ActiveSupport::VERSION::MAJOR = T.let(T.unsafe(nil), Integer) ActiveSupport::VERSION::MAJOR = T.let(T.unsafe(nil), Integer)
ActiveSupport::VERSION::MINOR = T.let(T.unsafe(nil), Integer) ActiveSupport::VERSION::MINOR = T.let(T.unsafe(nil), Integer)
ActiveSupport::VERSION::PRE = T.let(T.unsafe(nil), String)
ActiveSupport::VERSION::STRING = T.let(T.unsafe(nil), String) ActiveSupport::VERSION::STRING = T.let(T.unsafe(nil), String)
ActiveSupport::VERSION::TINY = T.let(T.unsafe(nil), Integer) ActiveSupport::VERSION::TINY = T.let(T.unsafe(nil), Integer)
@ -3086,6 +3087,7 @@ module ERB::Util
def html_escape_once(s); end def html_escape_once(s); end
def json_escape(s); end def json_escape(s); end
def unwrapped_html_escape(s); end def unwrapped_html_escape(s); end
def xml_name_escape(name); end
class << self class << self
def h(s); end def h(s); end
@ -3093,6 +3095,7 @@ module ERB::Util
def html_escape_once(s); end def html_escape_once(s); end
def json_escape(s); end def json_escape(s); end
def unwrapped_html_escape(s); end def unwrapped_html_escape(s); end
def xml_name_escape(name); end
end end
end end
@ -3100,6 +3103,10 @@ ERB::Util::HTML_ESCAPE = T.let(T.unsafe(nil), Hash)
ERB::Util::HTML_ESCAPE_ONCE_REGEXP = T.let(T.unsafe(nil), Regexp) ERB::Util::HTML_ESCAPE_ONCE_REGEXP = T.let(T.unsafe(nil), Regexp)
ERB::Util::JSON_ESCAPE = T.let(T.unsafe(nil), Hash) ERB::Util::JSON_ESCAPE = T.let(T.unsafe(nil), Hash)
ERB::Util::JSON_ESCAPE_REGEXP = T.let(T.unsafe(nil), Regexp) ERB::Util::JSON_ESCAPE_REGEXP = T.let(T.unsafe(nil), Regexp)
ERB::Util::TAG_NAME_FOLLOWING_REGEXP = T.let(T.unsafe(nil), Regexp)
ERB::Util::TAG_NAME_REPLACEMENT_CHAR = T.let(T.unsafe(nil), String)
ERB::Util::TAG_NAME_START_REGEXP = T.let(T.unsafe(nil), Regexp)
ERB::Util::TAG_NAME_START_REGEXP_SET = T.let(T.unsafe(nil), String)
module Enumerable module Enumerable
def as_json(options = T.unsafe(nil)); end def as_json(options = T.unsafe(nil)); end

View File

@ -24,10 +24,6 @@ module ActiveSupport::ForkTracker::CoreExtPrivate
include ::ActiveSupport::ForkTracker::CoreExt include ::ActiveSupport::ForkTracker::CoreExt
end end
module ActiveSupport::VERSION
PRE = ::T.let(nil, ::T.untyped)
end
class Addrinfo class Addrinfo
def connect_internal(local_addrinfo, timeout=T.unsafe(nil)); end def connect_internal(local_addrinfo, timeout=T.unsafe(nil)); end
end end