require 101

B

Brian Buckley

------=_Part_5975_12786502.1136496349180
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline

Hello all,

What does the return value of a require statement supposed to indicate? My
understanding was that 'true' meant the required library got properly
loaded.

When I open a new IRB session and type, say, "require 'builder'" I get a
false returned.

require 'builder''
=3D> false

However, it appears that the statement does in fact load the library (the
new classes in the library become available, etc). Why is the statement
returning false (or how can I diagnose why) and is it something to be
concerned over?

---Brian

------=_Part_5975_12786502.1136496349180--
 
B

Bob Showalter

Brian said:
Hello all,

What does the return value of a require statement supposed to indicate?
My
understanding was that 'true' meant the required library got properly
loaded.

When I open a new IRB session and type, say, "require 'builder'" I get a
false returned.

require 'builder''
=> false

However, it appears that the statement does in fact load the library
(the
new classes in the library become available, etc). Why is the statement
returning false (or how can I diagnose why) and is it something to be
concerned over?

A false return means the file was already in $", and so wasn't loaded
again. I'm guessing that some earlier require'd file has already brought
in builder.rb

If the file can't be found, and exception is raised.
 
J

Jim Weirich

Brian said:
Hello all,

What does the return value of a require statement supposed to indicate?
My
understanding was that 'true' meant the required library got properly
loaded.

When I open a new IRB session and type, say, "require 'builder'" I get a
false returned.

require 'builder''
=> false

However, it appears that the statement does in fact load the library
(the
new classes in the library become available, etc). Why is the statement
returning false (or how can I diagnose why) and is it something to be
concerned over?

Because Builder has that stupid autorequire attribute set in its gem
spec. When you require builder, RubyGems determines that builder isn't
in your list of available libraries, so it activates the gem and
automatically requires the file listed in the autorequire attribute
(which happens to be builder). Then RubyGems allows your original
require to take place, which requires the builder file again. But,
since builder was already autorequired, this time it returns a false.

Yes, this is a bug. Yes, it is fixed in the CVS head of RubyGems.

This is one of the (many) reasons I now believe autorequire was a
mistake. I should email the author of builder and encourage him to
remove the autorequire in the gem spec. Wait, oh, nevermind.
 
B

Brian Buckley

------=_Part_6395_13385710.1136498348323
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
A false return means the file was already in $", and so wasn't loaded
again. I'm guessing that some earlier require'd file has already brought
in builder.rb


This theory does not square with the fact that the require line does seem t=
o
load a previously unloaded library.
Builder::XmlMarkup.new # fails with a NameError
require 'builder' #returns false
Builder::XmlMarkup.new # now if works

Brian

------=_Part_6395_13385710.1136498348323--
 
B

Bob Showalter

Brian said:
This theory does not square with the fact that the require line does
seem to
load a previously unloaded library.

Sorry. I failed to consider that RubyGems was possibly coming into play
here.
 
B

Brian Buckley

------=_Part_6955_3117969.1136503068865
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Content-Disposition: inline
Because Builder has that stupid autorequire attribute set in its gem
spec.

Thank you for the explanation. I stumbled across this with builder while
walking through an article about builder
(http://www.xml.com/pub/a/2006/01/04/creating-xml-with-ruby-and-builder.htm=
l
) but I seem to often enough encounter what seem to be invalid 'false'
returns when requiring other libraries. Is this autocomplete problem a
problem with quite a few other gems? And does it spread easily because any
require which includes a require with that bug will also be returning
false? If so it sounds like the long and the short of it for us users of
gems is we can often (and maybe even generally should) ignor the return
value of require because it gives so many false positives. Fair statement
or overstating the bug?

Brian

------=_Part_6955_3117969.1136503068865--
 
E

Ezra Zygmuntowicz

Thank you for the explanation. I stumbled across this with builder
while
walking through an article about builder
(http://www.xml.com/pub/a/2006/01/04/creating-xml-with-ruby-and-
builder.html
) but I seem to often enough encounter what seem to be invalid 'false'
returns when requiring other libraries. Is this autocomplete
problem a
problem with quite a few other gems? And does it spread easily
because any
require which includes a require with that bug will also be returning
false? If so it sounds like the long and the short of it for us
users of
gems is we can often (and maybe even generally should) ignor the
return
value of require because it gives so many false positives. Fair
statement
or overstating the bug?

Brian

Yes for the short answer. I have found that usually if it returns
fals then things are ok. If it errors out with an exception then its
not ok.

Cheers-
-Ezra
 

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

Similar Threads

Require "tk" on linux 7
require question 4
HTTP request with trailer 0
postgres dbd driver for ruby dbi 0
marshalling constants 11
YARV 0.4.0 and ActiveRecord 1.13.2 rubygem 1
Duration between two days 8
ri in irb 2

Members online

Forum statistics

Threads
473,774
Messages
2,569,598
Members
45,151
Latest member
JaclynMarl
Top