зеркало из https://github.com/github/ruby.git
[ruby/irb] Enable deprecation warnings when using -W or -w
Requested in Ruby Bug 17377 https://github.com/ruby/irb/commit/698f6eb34a
This commit is contained in:
Родитель
336fe648b0
Коммит
753222d72c
|
@ -131,7 +131,7 @@ module IRB # :nodoc:
|
||||||
$DEBUG = true
|
$DEBUG = true
|
||||||
$VERBOSE = true
|
$VERBOSE = true
|
||||||
when "-w"
|
when "-w"
|
||||||
$VERBOSE = true
|
Warning[:deprecated] = $VERBOSE = true
|
||||||
when /^-W(.+)?/
|
when /^-W(.+)?/
|
||||||
opt = $1 || argv.shift
|
opt = $1 || argv.shift
|
||||||
case opt
|
case opt
|
||||||
|
@ -140,7 +140,7 @@ module IRB # :nodoc:
|
||||||
when "1"
|
when "1"
|
||||||
$VERBOSE = false
|
$VERBOSE = false
|
||||||
else
|
else
|
||||||
$VERBOSE = true
|
Warning[:deprecated] = $VERBOSE = true
|
||||||
end
|
end
|
||||||
when /^-r(.+)?/
|
when /^-r(.+)?/
|
||||||
opt = $1 || argv.shift
|
opt = $1 || argv.shift
|
||||||
|
|
Загрузка…
Ссылка в новой задаче