up vote 1 down vote favorite
share [g+] share [fb]

If I have this folder structure:

rexml
rexml/document

Is the following syntax not a recursive reference that includes everything below it?

require 'rexml'

Or do I need to write the following if I also want to access what's in 'document'?:

require 'rexml/document'

The reason I'm confused is I see some code where the author writes both require statements one after the other:

require 'rexml'
require 'rexml/document'

I wasn't sure if this was really necessary.

link|improve this question

feedback

2 Answers

up vote 11 down vote accepted

Ruby's standard require only loads Ruby files, not folders or anything else. When you say "require 'rexml'", you're actually saying "look for 'rexml.rb' in one of the paths in $: and load it." Thus, "require 'rexml/document'" looks for the file "document.rb" in the folder "rexml" in one of the paths in $:.

link|improve this answer
feedback

In Ruby, require requires only a single file. In many cases, authors of libraries/gems will ensure that that single file requires all other code necessary to use the library, however - see these lines in the nokogiri library, for instance. This can vary from library to library, however, and in the case of REXML it appears that you do need to require 'rexml/document'.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.