New features
- #490: Pluginfy RuboCop Performance. (@koic)
- #462: Add new
Performance/ZipWithoutBlock
cop that checks patterns like.map { |id| [id] }
or.map { [_1] }
and can replace them with.zip
. (@corsonknowles)
Bug fixes
- #484: Fix
Performance/CaseWhenSplat
cop error onwhen
node without body. (@viralpraxis)