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.