Remember that when you require a file identified by a certain path more than once each subsequent call to require will return false and the file won't be reevaluated. As a result if your base.rb, which requires everything else, is itself required, further attepts to require it should not lead to a reevaluation.
Let's demonstrate it using an example. Create a lib directory with 3 files inside.
# lib/a.rb
require 'base'
puts :a
# lib/b.rb
require 'base'
puts :b
# lib/base.rb
$counter ||= 0
puts "Evaluated base.rb #{$counter += 1} times"
dir = File.dirname(__FILE__)
path = File.join(dir, '**', '*.rb')
Dir[path].each { |file| require File.expand_path file }
Execute lib/base.rb directly. base.rb will be evaluated twice: firstly, when it's executed directly; secondly, when it's required by a.rb. Notice, that it is not evaluated when it's required from b.rb.
$ ruby -I lib lib/base.rb
Evaluated base.rb 1 times
Evaluated base.rb 2 times
a
b
Compare with requireing it. Now base.rb is evaluated once only, because attempts to require it in a.rb and b.rb were preceded by having the file required using the command line -r switch.
$ ruby -I lib -r base -e 'puts :ok'
Evaluated base.rb 1 times
a
b
ok
api.rbrelies on a number of classes/modules/etc defined throughout the directory structure. So, I usebase.rbto require all of the files thatapi.rbrelies on, and then haveapi.rbrequirebase.rb. I want to avoid havingbase.rbrequireapi.rbbecause I want to make sure thatapi.rbhas everything defined that it needs before evaluating it. Doing this manually (e.g. filter out `file =~ \api/.rb`) is relatively straightforward, but I'd much prefer to do this dynamically so I can reuse this code more easily. – Ethan Jan 22 at 21:25