[#46689] [IMPORTANT] 2.0.0 release plan — Yusuke Endoh <mame@...>
ALL COMMITTERS SHOULD READ THIS MAIL! コミッタはこのメール読んで!
5 messages
2012/12/02
[#46707] [ruby-trunk - Feature #7510][Open] irb --help が古い — "sho-h (Sho Hashimoto)" <sho-h@...>
6 messages
2012/12/04
[#46710] [ruby-trunk - Bug #7520][Assigned] irb/completion でインスタンス変数がチェックされていない — "tarui (Masaya Tarui)" <tarui@...>
4 messages
2012/12/05
[#46747] [ruby-trunk - Bug #7572][Open] クラス定義においてスーパークラスとしてクラスでないものを指定してもエラーにならない事がある — "tadf (tadayoshi funaba)" <redmine@...>
6 messages
2012/12/16
[#46750] [ruby-trunk - Bug #7575][Open] Struct のメンバーをアクセサで参照できない事がある — "tadf (tadayoshi funaba)" <redmine@...>
4 messages
2012/12/16
[#46766] [ruby-trunk - Bug #7590][Open] parallel test-all で test_settracefunc が cfp consistency error — "tarui (Masaya Tarui)" <tarui@...>
5 messages
2012/12/19
[#46797] [ruby-trunk - Bug #7603][Open] app_factorial と so_ackermann が動かない — "authorNari (Narihiro Nakamura)" <authorNari@...>
5 messages
2012/12/22
[#46798] Re: [ruby-dev:46797] [ruby-trunk - Bug #7603][Open] app_factorial と so_ackermann が動かない
— SASADA Koichi <ko1@...>
2012/12/22
あれぇ,以前よりも増やしたつもりだったんだけど....
[#46807] [ruby-trunk - Bug #7625][Open] Arrayを継承したオブジェクトのcompactがArrayを返す — "mogya@... (Daisuke Furukawa)" <mogya@...>
19 messages
2012/12/26
[#46813] backport93からの移動 [Re: [ruby-core:51175] [Backport93 - Backport #7632] IRB autocompletion bug] — keiju@... (keiju ISHITSUKA)
けいじゅ@いしつかです.
3 messages
2012/12/29
[ruby-dev:46806] [ruby-trunk - Bug #6301] irb 起動後に conf.debug_level を変更するとエラーになる
From:
"keiju (Keiju Ishitsuka)" <keiju@...>
Date:
2012-12-26 04:02:47 UTC
List:
ruby-dev #46806
Issue #6301 has been updated by keiju (Keiju Ishitsuka).
phasis68 (Heesob Park) wrote:
> After the changeset r38611, the output of irb is too verbose by default.
Sorry, I have updated again.
----------------------------------------
Bug #6301: irb 起動後に conf.debug_level を変更するとエラーになる
https://bugs.ruby-lang.org/issues/6301#change-35085
Author: sho-h (Sho Hashimoto)
Status: Closed
Priority: Normal
Assignee: keiju (Keiju Ishitsuka)
Category: lib
Target version:
ruby -v: ruby 1.9.3p125 (2012-02-16 revision 34643) [x86_64-linux]
$ irb --irb_debug <数字> などでは問題ありませんが、irb の起動後に conf.debug_level を設定するとエラーになるようです。(1.9.3-p125 で確認しましたが、trunk でも同様のようです)
> conf.debug_level = "1"
NoMethodError: undefined method `debug_level=' for IRB::SLex:Class
from /home/sho-h/.rvm/rubies/ruby-1.9.3-p125/lib/ruby/1.9.1/irb/context.rb:245:in `debug_level='
IRB::SLex.debug_level を代入するのを止めるか、debug_level を追加するのがよいのではないかと思いました。
--- lib/irb/context.rb (revision 35336)
+++ lib/irb/context.rb (working copy)
@@ -242,7 +242,6 @@
def debug_level=(value)
@debug_level = value
RubyLex.debug_level = value
- SLex.debug_level = value
end
def debug?
--
http://bugs.ruby-lang.org/