IRB require issues

G

Guest

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
 
T

Todd Benson

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,431
Messages
2,571,679
Members
48,796
Latest member
Greg L.

Latest Threads

Top