diff --git a/Library/Homebrew/sorbet/rbi/gems/rubocop-rspec@2.5.0.rbi b/Library/Homebrew/sorbet/rbi/gems/rubocop-rspec@2.6.0.rbi similarity index 99% rename from Library/Homebrew/sorbet/rbi/gems/rubocop-rspec@2.5.0.rbi rename to Library/Homebrew/sorbet/rbi/gems/rubocop-rspec@2.6.0.rbi index 25c74215cc..773aa723f0 100644 --- a/Library/Homebrew/sorbet/rbi/gems/rubocop-rspec@2.5.0.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/rubocop-rspec@2.6.0.rbi @@ -1,9 +1,9 @@ +# typed: true + # DO NOT EDIT MANUALLY # This is an autogenerated file for types exported from the `rubocop-rspec` gem. # Please instead update this file by running `bin/tapioca gem rubocop-rspec`. -# typed: true - module RuboCop; end module RuboCop::Cop; end module RuboCop::Cop::Layout; end @@ -1505,11 +1505,13 @@ RuboCop::Cop::RSpec::Variable::Subjects = RuboCop::RSpec::Language::Subjects class RuboCop::Cop::RSpec::VariableDefinition < ::RuboCop::Cop::RSpec::Base include ::RuboCop::Cop::ConfigurableEnforcedStyle include ::RuboCop::Cop::RSpec::Variable + extend ::RuboCop::Cop::AutoCorrector def on_send(node); end private + def correct_variable(variable); end def string?(node); end def style_violation?(variable); end def symbol?(node); end @@ -1585,6 +1587,8 @@ module RuboCop::RSpec; end class RuboCop::RSpec::AlignLetBrace include ::RuboCop::RSpec::Language + include ::RuboCop::PathUtil + include ::RuboCop::Cop::Util def initialize(root, token); end