Update RBI files for activesupport.

This commit is contained in:
BrewTestBot 2022-01-10 18:17:20 +00:00
parent 38f3ee4625
commit b6c70e7a31
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
2 changed files with 14 additions and 30 deletions

View File

@ -10,16 +10,28 @@ module ActiveSupport
extend ::ActiveSupport::LazyLoadHooks
extend ::ActiveSupport::Autoload
def parse_json_times; end
def parse_json_times=(val); end
def test_order; end
def test_order=(val); end
class << self
def eager_load!; end
def escape_html_entities_in_json(*args, &block); end
def escape_html_entities_in_json=(arg); end
def gem_version; end
def json_encoder(*args, &block); end
def json_encoder=(arg); end
def parse_json_times; end
def parse_json_times=(val); end
def test_order; end
def test_order=(val); end
def time_precision(*args, &block); end
def time_precision=(arg); end
def to_time_preserves_timezone; end
def to_time_preserves_timezone=(value); end
def use_standard_json_time_format(*args, &block); end
def use_standard_json_time_format=(arg); end
def utc_to_local_returns_utc_offset_times; end
def utc_to_local_returns_utc_offset_times=(value); end
def version; end
@ -3318,14 +3330,14 @@ Numeric::PETABYTE = T.let(T.unsafe(nil), Integer)
Numeric::TERABYTE = T.let(T.unsafe(nil), Integer)
class Object < ::BasicObject
include ::ActiveSupport::ToJsonWithActiveSupportEncoder
include ::ActiveSupport::ForkTracker::CoreExt
include ::ActiveSupport::ForkTracker::CoreExtPrivate
include ::ActiveSupport::ToJsonWithActiveSupportEncoder
include ::Kernel
include ::JSON::Ext::Generator::GeneratorMethods::Object
include ::PP::ObjectMixin
include ::ActiveSupport::Tryable
include ::ActiveSupport::Dependencies::Loadable
include ::ActiveSupport::Tryable
def acts_like?(duck); end
def as_json(options = T.unsafe(nil)); end

View File

@ -18,12 +18,6 @@ class ActiveRecordColumnTypeHelper
extend ::T::Private::Methods::SingletonMethodHooks
end
module ActiveSupport
def parse_json_times(); end
def parse_json_times=(val); end
end
class ActiveSupport::Deprecation
def self.deprecation_warning(*args, &block); end
@ -36,28 +30,6 @@ module ActiveSupport::ForkTracker::CoreExtPrivate
include ::ActiveSupport::ForkTracker::CoreExt
end
module ActiveSupport
def self.escape_html_entities_in_json(*args, &block); end
def self.escape_html_entities_in_json=(arg); end
def self.json_encoder(*args, &block); end
def self.json_encoder=(arg); end
def self.parse_json_times(); end
def self.parse_json_times=(val); end
def self.time_precision(*args, &block); end
def self.time_precision=(arg); end
def self.use_standard_json_time_format(*args, &block); end
def self.use_standard_json_time_format=(arg); end
end
class Addrinfo
def connect_internal(local_addrinfo, timeout=T.unsafe(nil)); end
end