Update RBI files for rubocop-rspec.

This commit is contained in:
BrewTestBot 2021-09-22 18:14:41 +00:00
parent 9bf4f0ebb6
commit 3af7646c5f
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F

View File

@ -453,6 +453,23 @@ RuboCop::Cop::RSpec::ExampleWording::MSG_IT = T.let(T.unsafe(nil), String)
RuboCop::Cop::RSpec::ExampleWording::MSG_SHOULD = T.let(T.unsafe(nil), String)
RuboCop::Cop::RSpec::ExampleWording::SHOULD_PREFIX = T.let(T.unsafe(nil), Regexp)
class RuboCop::Cop::RSpec::ExcessiveDocstringSpacing < ::RuboCop::Cop::RSpec::Base
extend ::RuboCop::Cop::AutoCorrector
def example_description(param0 = T.unsafe(nil)); end
def on_send(node); end
private
def add_whitespace_offense(node, text); end
def docstring(node); end
def excessive_whitespace?(text); end
def strip_excessive_whitespace(text); end
def text(node); end
end
RuboCop::Cop::RSpec::ExcessiveDocstringSpacing::MSG = T.let(T.unsafe(nil), String)
class RuboCop::Cop::RSpec::ExpectActual < ::RuboCop::Cop::RSpec::Base
extend ::RuboCop::Cop::AutoCorrector
@ -1423,6 +1440,18 @@ end
RuboCop::Cop::RSpec::StubbedMock::MSG = T.let(T.unsafe(nil), String)
class RuboCop::Cop::RSpec::SubjectDeclaration < ::RuboCop::Cop::RSpec::Base
def offensive_subject_declaration?(param0 = T.unsafe(nil)); end
def on_send(node); end
private
def message_for(offense); end
end
RuboCop::Cop::RSpec::SubjectDeclaration::MSG_LET = T.let(T.unsafe(nil), String)
RuboCop::Cop::RSpec::SubjectDeclaration::MSG_REDUNDANT = T.let(T.unsafe(nil), String)
class RuboCop::Cop::RSpec::SubjectStub < ::RuboCop::Cop::RSpec::Base
include ::RuboCop::Cop::RSpec::TopLevelGroup