IRB require issues

is there a reason why saying require 'net/http' would return false?

i've been trying to figure out what's wrong with my installation, but i
see no reason why it refuses to load that one library, it works for
everything else i can think of...

thanks

···

--
Posted via http://www.ruby-forum.com/.

False means that's already required.

Diego Scataglini

···

On Jul 5, 2007, at 9:29 PM, Guest <Guest@bugmenot.com> wrote:

is there a reason why saying require 'net/http' would return false?

i've been trying to figure out what's wrong with my installation, but i
see no reason why it refuses to load that one library, it works for
everything else i can think of...

thanks

--
Posted via http://www.ruby-forum.com/\.

Usually, this is because it is already loaded ...

irb(main):001:0> $LOADED_FEATURES.grep /net/
=> ["net/protocol.rb", "net/http.rb"]
irb(main):002:0> require 'net/http' #already loaded, so should return false
=> false

hth,
Todd

···

On 7/5/07, Guest <Guest@bugmenot.com> wrote:

is there a reason why saying require 'net/http' would return false?

i've been trying to figure out what's wrong with my installation, but i
see no reason why it refuses to load that one library, it works for
everything else i can think of...

thanks

Nice one Todd,
I didn't know about $LOADED_FEATURES.
Thanks

···

On 7/5/07, Todd Benson <caduceass@gmail.com> wrote:

On 7/5/07, Guest <Guest@bugmenot.com> wrote:
> is there a reason why saying require 'net/http' would return false?
>
> i've been trying to figure out what's wrong with my installation, but i
> see no reason why it refuses to load that one library, it works for
> everything else i can think of...
>
> thanks

Usually, this is because it is already loaded ...

irb(main):001:0> $LOADED_FEATURES.grep /net/
=> ["net/protocol.rb", "net/http.rb"]
irb(main):002:0> require 'net/http' #already loaded, so should return
false
=> false

hth,
Todd

--
Diego Scataglini