diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-04-09 14:55:18 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-04-09 14:55:18 +0000 |
commit | d3e7b990dc096f71a32eb18959503328b78cf2b1 (patch) | |
tree | a29647d4113ea04c403ae1c4381c821790108b97 /lib/irb | |
parent | 79a3b7797f559d3aa41816368c8a3c1fb26f4530 (diff) | |
download | ruby-d3e7b990dc096f71a32eb18959503328b78cf2b1.tar.gz |
* lib/irb/init.rb, lib/irb/lc/help-message,
lib/irb/lc/ja/help-message: add -w flag. [ruby-core:24594]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27273 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb')
-rw-r--r-- | lib/irb/init.rb | 12 | ||||
-rw-r--r-- | lib/irb/lc/help-message | 2 | ||||
-rw-r--r-- | lib/irb/lc/ja/help-message | 2 |
3 files changed, 16 insertions, 0 deletions
diff --git a/lib/irb/init.rb b/lib/irb/init.rb index f51fd1c0b1..d428850e3f 100644 --- a/lib/irb/init.rb +++ b/lib/irb/init.rb @@ -135,6 +135,18 @@ module IRB @CONF[:MATH_MODE] = true when "-d" $DEBUG = true + when "-w" + $VERBOSE = true + when /^-W(.+)?/ + opt = $1 || ARGV.shift + case opt + when "0" + $VERBOSE = nil + when "1" + $VERBOSE = false + else + $VERBOSE = true + end when /^-r(.+)?/ opt = $1 || ARGV.shift @CONF[:LOAD_MODULES].push opt if opt diff --git a/lib/irb/lc/help-message b/lib/irb/lc/help-message index dd30b9fd24..18aea149bc 100644 --- a/lib/irb/lc/help-message +++ b/lib/irb/lc/help-message @@ -17,6 +17,8 @@ Usage: irb.rb [options] [programfile] [arguments] -I path Specify $LOAD_PATH directory -U Same as `ruby -U` -E enc Same as `ruby -E` + -w Same as `ruby -w` + -W[level=2] Same as `ruby -W` --inspect Use `inspect' for output (default except for bc mode) --noinspect Don't use inspect for output --readline Use Readline extension module diff --git a/lib/irb/lc/ja/help-message b/lib/irb/lc/ja/help-message index f2c4066cf6..78ba72ed35 100644 --- a/lib/irb/lc/ja/help-message +++ b/lib/irb/lc/ja/help-message @@ -16,6 +16,8 @@ Usage: irb.rb [options] [programfile] [arguments] -I path $LOAD_PATH に path を追加する. -U ruby -U と同じ. -E enc ruby -E と同じ. + -w ruby -w と同じ. + -W[level=2] ruby -W と同じ. --inspect 結果出力にinspectを用いる(bcモード以外はデフォルト). --noinspect 結果出力にinspectを用いない. --readline readlineライブラリを利用する. |