Update RBI files for yard.

This commit is contained in:
BrewTestBot 2021-11-30 18:16:47 +00:00
parent fa918bb341
commit aa9e2e529a
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F

View File

@ -135,6 +135,7 @@ module YARD
def ruby18?; end
def ruby19?; end
def ruby2?; end
def ruby3?; end
def windows?; end
end
end
@ -1346,7 +1347,12 @@ class YARD::Handlers::Ruby::MixinHandler < ::YARD::Handlers::Ruby::Base
def recipient(mixin); end
end
class YARD::Handlers::Ruby::ModuleFunctionHandler < ::YARD::Handlers::Ruby::Base; end
class YARD::Handlers::Ruby::ModuleFunctionHandler < ::YARD::Handlers::Ruby::Base
include ::YARD::Handlers::Ruby::DecoratorHandlerMethods
def make_module_function(instance_method, namespace); end
end
class YARD::Handlers::Ruby::ModuleHandler < ::YARD::Handlers::Ruby::Base; end
class YARD::Handlers::Ruby::PrivateClassMethodHandler < ::YARD::Handlers::Ruby::Base
@ -3256,6 +3262,7 @@ class YARD::Tags::Directive
protected
def inside_directive?; end
def parser; end
end