aboutsummaryrefslogtreecommitdiffstats
path: root/lib/irb/context.rb
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2019-11-21 02:44:15 +0900
committeraycabta <aycabta@gmail.com>2019-11-21 02:44:35 +0900
commiteee70b41d4c04caa06a68cc4847a600eb7322cb8 (patch)
tree1b88d41d6c51a9967c37299bd7bd5c99631c06e4 /lib/irb/context.rb
parent9d6f78822c61348989802848150f103f0a4ef7d0 (diff)
downloadruby-eee70b41d4c04caa06a68cc4847a600eb7322cb8.tar.gz
Add a warning message and --legacy of an alias of --singleline
Diffstat (limited to 'lib/irb/context.rb')
-rw-r--r--lib/irb/context.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/irb/context.rb b/lib/irb/context.rb
index f529787bae..94def5fc6a 100644
--- a/lib/irb/context.rb
+++ b/lib/irb/context.rb
@@ -82,6 +82,12 @@ module IRB
case use_multiline?
when nil
if STDIN.tty? && IRB.conf[:PROMPT_MODE] != :INF_RUBY && !use_singleline?
+ # Both of multiline mode and singleline mode aren't specified.
+ puts <<~EOM
+ This version of IRB is drastically different from the previous version.
+ If you hit any issues, you can use "irb --legacy" to run the old version.
+ If you want to just erase this message, please use "irb --multiline".
+ EOM
@io = ReidlineInputMethod.new
else
@io = nil