Update RBI files for i18n.

Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml) workflow.
This commit is contained in:
BrewTestBot 2023-04-27 16:41:43 +00:00
parent a8f023f8bb
commit 45308ed3eb
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F

View File

@ -333,6 +333,10 @@ module I18n::Backend::Pluralization
def pluralizer(locale); end
def pluralizers; end
private
def symbolic_count(count); end
end
class I18n::Backend::Simple
@ -358,6 +362,8 @@ module I18n::Backend::Simple::Implementation
def lookup(locale, key, scope = T.unsafe(nil), options = T.unsafe(nil)); end
end
I18n::Backend::Simple::Implementation::MUTEX = T.let(T.unsafe(nil), Thread::Mutex)
module I18n::Backend::Transliterator
def transliterate(locale, string, replacement = T.unsafe(nil)); end
@ -495,6 +501,7 @@ end
I18n::Gettext::PLURAL_SEPARATOR = T.let(T.unsafe(nil), String)
I18n::INTERPOLATION_PATTERN = T.let(T.unsafe(nil), Regexp)
I18n::INTERPOLATION_PATTERNS_CACHE = T.let(T.unsafe(nil), Hash)
class I18n::InvalidFilenames < ::I18n::ArgumentError
def initialize(file_errors); end
@ -644,49 +651,12 @@ end
module I18n::Tests; end
module I18n::Tests::Basics
def teardown; end
end
module I18n::Tests::Defaults
def setup; end
end
module I18n::Tests::Interpolation; end
module I18n::Tests::Link; end
module I18n::Tests::Localization
include ::I18n::Tests::Localization::Date
include ::I18n::Tests::Localization::DateTime
include ::I18n::Tests::Localization::Procs
include ::I18n::Tests::Localization::Time
class << self
def included(base); end
end
end
module I18n::Tests::Localization::Date
def setup; end
end
module I18n::Tests::Localization::DateTime
def setup; end
end
module I18n::Tests::Localization::Procs; end
module I18n::Tests::Localization::Time
def setup; end
end
module I18n::Tests::Lookup
def setup; end
end
module I18n::Tests::Pluralization; end
module I18n::Tests::Procs; end
class I18n::UnknownFileType < ::I18n::ArgumentError
def initialize(type, filename); end