Project

General

Profile

Actions

Bug #677

closed

LoadError bug in irb/init.rb

Added by djberg96 (Daniel Berger) over 15 years ago. Updated about 13 years ago.

Status:
Closed
Target version:
-
ruby -v:
1.9
[ruby-core:19450]

Description

=begin
There's a plain rescue that should explicitly check for LoadError in irb/init.rb, since LoadError is not a subclass of StandardError:

--- init.orig Mon Feb 12 16:01:20 2007
+++ init.rb Wed Oct 22 09:40:25 2008
@@ -250,7 +250,7 @@
for m in @CONF[:LOAD_MODULES]
begin
require m

  •  rescue
    
  •  rescue LoadError
      print $@[0], ":", $!.class, ": ", $!, "\n"
     end
    
    end

This solved a problem I had on a Windows box where I didn't have readline installed but was trying to use irb.

Regards,

Dan
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0