File tree Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 22
33## Master (Unreleased)
44
5+ ## 1.40.0 (2020-06-11)
6+
57* Add new ` RSpec/VariableName ` cop. ([ @tejasbubane ] [ ] )
68* Add new ` RSpec/VariableDefinition ` cop. ([ @tejasbubane ] [ ] )
79* Expand ` Capybara/VisibilityMatcher ` to support more than just ` have_selector ` . ([ @twalpole ] [ ] )
Original file line number Diff line number Diff line change @@ -231,6 +231,7 @@ RSpec/FilePath:
231231 IgnoreMethods : false
232232 SpecSuffixOnly : false
233233 VersionAdded : ' 1.2'
234+ VersionChanged : ' 1.40'
234235 StyleGuide : https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/FilePath
235236
236237RSpec/Focus :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module RuboCop
44 module RSpec
55 # Version information for the RSpec RuboCop plugin.
66 module Version
7- STRING = '1.39 .0'
7+ STRING = '1.40 .0'
88 end
99 end
1010end
Original file line number Diff line number Diff line change @@ -1156,7 +1156,7 @@ expect { my_app.print_report }.to output('Hello World').to_stdout
11561156
11571157Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged
11581158--- | --- | --- | --- | ---
1159- Enabled | Yes | No | 1.2 | -
1159+ Enabled | Yes | No | 1.2 | 1.40
11601160
11611161Checks that spec file paths are consistent and well-formed.
11621162
You can’t perform that action at this time.
0 commit comments