Releases: rubocop/rubocop-rspec
Releases · rubocop/rubocop-rspec
RuboCop RSpec v1.3.1
- Fix auto correction issue - syntax had changed in RuboCop v0.31
- Add RuboCop clone to vendor folder - see #39 for details
Thanks to @bquorning
RuboCop RSpec v1.3.0
- Ignore non string arguments for FilePathCop
- Skip DescribeMethod cop for tagged specs
- Skip DescribeClass cop for feature/request specs
Thanks to @deivid-rodriguez
RuboCop RSpec v1.2.2
Make RSpec::ExampleWording
case insensitive - thanks to @EsterYtterbrinkAtTrialbee (#31)
RuboCop RSpec v1.2.1
- Add
RSpec::VerifiedDoubles
cop - thanks to @andyw8
RuboCop RSpec v1.2.0
- Rename
FileName
cop toFilePath
as a workaround - see #19. - Add
autocorrect
toRSpec::ExampleWording
. This experimental - use with care and check the changes. - Update to RuboCop
~> 0.24
. - Drop support of ruby
1.9.2
. - Fix config loader debug output.
RuboCop RSpec v1.1.0
Add autocorrect
to RSpec::DescribedClass
cop.
RuboCop RSpec v1.0.1
Fix Bug: Add config
folder to gemspec - thanks to @pstengel
RuboCop RSpec v1.0
This is the abstract of the changes since 0.18.1
- Update code to work with RuboCop
~> 0.23
. - Split
UnitSpecNaming
cop intoDescribeClass
,DescribeMethod
andFileName
and enabled them all by default. - Gem is no longer 20MB.
- Add
ExampleWording
cop to prevent to use ofshould
at the beginning of the spec description. - Add
MultipleDescribes
cop to check for multiple top level describes. - Add
DescribedClass
cop to promote the use ofdescribed_class
. - Add
InstanceVariable
cop to check for the usage of instance variables.
RuboCop RSpec v1.0.rc3
- Update to RuboCop
>= 0.23
. - Add configuration option for
CustomTransformation
toFileName
cop.
The cops names have changed to match the new RuboCop namespace style (e.g. RSpec/FileName
instead of RSpecFileName
)
This should be the last release before version 1.0.0
.
RuboCop RSpec v1.0.rc2
- Gem is no longer 20MB (sorry!).
RspecFileName
cop allows for method specs to organized into directories by class and type.