aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authoryuki <yuki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-22 17:30:22 +0000
committeryuki <yuki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-22 17:30:22 +0000
commit03cc02c9ab8ac0a20df044b8f8be03a0aca553eb (patch)
tree1b3cb068d9d8cbe7992a9f3ab94d9ada86acd548 /NEWS
parente6be17c74a42033e3f685456a0ab195e77620b8f (diff)
downloadruby-03cc02c9ab8ac0a20df044b8f8be03a0aca553eb.tar.gz
* gems/bundled_gems: Upgrade the did_you_mean gem to 1.0.0
* NEWS: Add news about the did_you_mean gem git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS10
1 files changed, 10 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 396b83b5ff..d90f1c4377 100644
--- a/NEWS
+++ b/NEWS
@@ -39,6 +39,16 @@ with all sufficient information, see the ChangeLog file.
obj&.attr += 1
[Feature #11537]
+* the did_you_mean gem:
+
+ * When a NameError or NoMethodError occurs because of a typo in the name,
+ the did_you_mean gem automatically suggests other names similar to the
+ method name.
+
+ "Yuki".starts_with?("Y")
+ # => NoMethodError: undefined method `starts_with?' for "Yuki":String
+ # Did you mean? start_with?
+
* indented here document:
* new string literal, here document starts with `<<~`.