Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 1.23 KB

CHANGELOG.md

File metadata and controls

29 lines (19 loc) · 1.23 KB

Changelog

master (unreleased)

New features

  • New cop RescueModifier tracks uses of rescue in modifier form
  • New cop PercentLiterals tracks uses of %q, %Q, %s and %x
  • New cop BraceAfterPercent tracks uses of % literals with delimiters other than ()

Bugs fixed

  • #62 - Config files in ancestor directories are ignored if another exists in home directory
  • #65 - Suggests to convert symbols :==, :<=> and the like to snake_case

0.5.0 (04/17/2013)

New features

  • New cop FavorSprintf that checks for usages of String#%
  • New cop Semicolon that checks for usages of ; as expression separator
  • New cop VariableInterpolation that checks for variable interpolation in double quoted strings
  • New cop Alias that checks for uses of the keyword alias
  • Automatically detect extensionless Ruby files with shebangs when search for Ruby source files in a directory

Bugs fixed

  • #59 - Interpolated variables not enclosed in braces are not noticed
  • #42 - Received malformed format string ArgumentError from rubocop