- The red metacoder side of a mad betacoder scientist -
My lab for brainstorming and challenges in Ruby and Metaprogramming
Tuesday, March 6, 2012
A little bit on require behavior
require filename will:
return true when it finds filename;
return false when it already loaded filename;
raise LoadError when it doesn't find filename.
That was not properly documented; the official documentation lean us to guess it would return false when the file is not found, and that's not the case.
No comments:
Post a Comment