summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorsawanoboly <sawanoboriyu@higanworks.com>2015-04-15 20:06:39 +0900
committersawanoboly <sawanoboriyu@higanworks.com>2015-04-15 20:06:39 +0900
commit9117b3b7d326948fcbe4da0ea13b0698e1449b9d (patch)
tree8156c93a6e22e05c02923a5c1feb209645ed6cdc /lib
parent8641561770eb4e200537d822dfc3fce906fa0cc2 (diff)
downloadchef-9117b3b7d326948fcbe4da0ea13b0698e1449b9d.tar.gz
Show Chef::VERSION at prompt_c and prompt_i on shell session
Diffstat (limited to 'lib')
-rw-r--r--lib/chef/shell.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/shell.rb b/lib/chef/shell.rb
index ee4fe78808..1589832bef 100644
--- a/lib/chef/shell.rb
+++ b/lib/chef/shell.rb
@@ -108,9 +108,9 @@ module Shell
irb_conf[:IRB_RC] = lambda do |conf|
m = conf.main
- conf.prompt_c = "chef#{leader(m)} > "
+ conf.prompt_c = "chef#{leader(m)} (#{Chef::VERSION})> "
conf.return_format = " => %s \n"
- conf.prompt_i = "chef#{leader(m)} > "
+ conf.prompt_i = "chef#{leader(m)} (#{Chef::VERSION})> "
conf.prompt_n = "chef#{leader(m)} ?> "
conf.prompt_s = "chef#{leader(m)}%l> "
conf.use_tracer = false