rawline_irb.rb not working on Ruby 1.9.1
Reported by h3rald (at h3rald) | March 12th, 2009 @ 01:26 PM | in 0.3.2
C:/Ruby/lib/ruby/1.9.1/irb/input-method.rb:108:in `initialize': undefined method `encoding' for nil:
NilClass (NoMethodError)
from rawline_irb.rb:26:in `new'
from rawline_irb.rb:26:in `<module:IRB>'
from rawline_irb.rb:24:in `<main>'
This is due to the fact that IRB.conf[:LC_MESSAGE] is not set.
The script should be updates as follows:
# ...
module IRB
@CONF[:LC_MESSAGES] = Locale.new # <<<
@CONF[:SCRIPT] = RawlineInputMethod.new
end
IRB.start
Comments and changes to this ticket
-
h3rald (at h3rald) March 12th, 2009 @ 01:27 PM
- State changed from new to open
-
h3rald (at h3rald) March 20th, 2009 @ 07:56 PM
- State changed from open to resolved
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
RawLine is a 100% Ruby library able to provide some of the functionality offered by ReadLine, plus additional features such as a more intuitive way to bind characters to specific keys or key sequences.
People watching this ticket
Referenced by
- 10 Rawline.readline broken on ruby 1.9.1 ...then everything should work (except the rawline_irb ex...