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...
I run all 3
Net/http is usually not already required. you might have it required previously in the session or maybe in your .irbsc file. If you are in the script/console session in rails, then rails might have it required before you. Btw, Requiring something returns something only the first time, afterward it returns false.
Diego Scataglini
···
On Jul 5, 2007, at 9:40 PM, Skt <scottjourand@gmail.com> wrote:
Same with me actually, do you run windows? I always thought it was already required (noob)
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...