yarv-dev-en:52
From: SASADA Koichi <ko1 atdot.net>
Date: Wed, 22 Feb 2006 18:16:48 +0900
Subject: [yarv-dev-en:52] Re: YARV 0.4.0
Hi, Kent Sibilev wrote: > Does irb work in this version? Or is it supposed to work? > On my Powerbook I get: > > $ irb-yarv > /Users/kent/Apps/yarv/lib/ruby/2.0/irb/workspace.rb:17:in > `initialize': uninitialized constant IRB::WorkSpace::Binding > (NameError) > from /Users/kent/Apps/yarv/lib/ruby/2.0/irb/context.rb:27:in `new' > from /Users/kent/Apps/yarv/lib/ruby/2.0/irb/context.rb:27:in > `initialize' > from /Users/kent/Apps/yarv/lib/ruby/2.0/irb.rb:92:in `new' > from /Users/kent/Apps/yarv/lib/ruby/2.0/irb.rb:92:in `initialize' > from /Users/kent/Apps/yarv/lib/ruby/2.0/irb.rb:59:in `new' > from /Users/kent/Apps/yarv/lib/ruby/2.0/irb.rb:59:in `start' > from /Users/kent/Apps/yarv/bin/irb-yarv:13:in `<main>' The reasone is that there is no ::Binding class but ::YARVCore::VM::Binding class on YARV. I fixed it like "::Binding = ::YARVCore::VM::Binding". This naming rule will be fixed (YARVCore class will be vanished). You can use irb on current HEAD version :) Thanks, -- // SASADA Koichi at atdot dot net -- ML: yarv-dev-en quickml.atdot.net 使い方: http://www.atdot.net/~ko1/quickml
49 2006-02-22 14:29 [ko1 atdot.net ] YARV 0.4.0 50 2006-02-22 14:52 ┗[ksruby gmail.com ] -> 52 2006-02-22 18:16 ┗[ko1 atdot.net ]