From 17d2789d4823b026d6ed673b05a13f6586116814 Mon Sep 17 00:00:00 2001 From: Ameya Varade Date: Thu, 4 Jul 2013 18:55:54 +0530 Subject: Disabling Readline extension module in IRB --- bin/chef-shell | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/chef-shell b/bin/chef-shell index 90598d665d..c1cd0d4873 100755 --- a/bin/chef-shell +++ b/bin/chef-shell @@ -31,4 +31,6 @@ $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), "..", "lib"))) require "chef/shell" +#irb --noreadline Don't use Readline extension module +IRB.conf[:USE_READLINE] = false Shell.start -- cgit v1.2.1