Skip to content

v0.9.0

Choose a tag to compare

@yuki24 yuki24 released this 09 Nov 01:26
· 655 commits to master since this release

Features

  • did_you_mean now suggests instance variable names if @ is missing (#12, 39d1e2b)
@full_name = "Yuki Nishijima"
first_name, last_name = full_name.split(" ")
# => NameError: undefined local variable or method `full_name' for main:Object
#
#     Did you mean? @full_name
#

Bug Fixes

  • Fixed a bug where did_you_mean changes some behaviours of Ruby 2.1.3/2.1.4 installed on Max OS X (#14, 44c451f, 9ebde21)
  • Fixed a bug where sometimes NoMethodError suggests duplicate method names (9865cc5)