Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the best way to require all files from a directory in ruby ?

share|improve this question

6 Answers

up vote 158 down vote accepted

How about:

Dir["/path/to/directory/*.rb"].each {|file| require file }
share|improve this answer
1  
You'll need to drop the .rb before requiring. Good other than that – rampion Apr 9 '09 at 17:27
6  
According to the Pickaxe, the .rb extension is optional. Technically it changes the meaning: "require 'foo.rb'" requires foo.rb, whereas "require 'foo'" might require foo.rb, foo.so or foo.dll. – Sam Stokes Apr 9 '09 at 17:46
16  
There's a subtle gotcha to not stripping the extension. If some other part of the code calls require 'foo' then ruby will load the same file again, which can lead to spurious errors. I added my own answer which explains that and shows how to strip the extension. – Pete Hodgson Feb 9 '10 at 18:40
1  
@Pete, is this still true? See Rene's comment below. – Andres Riofrio Apr 17 '12 at 4:05
1  
This might be obvious, but its worth noting that dropping the .rb will also require any non-.rb files in the dir, which might not be desired. – louism Jun 18 '12 at 2:53

If it's a directory relative to the file that does the requiring (e.g. you want to load all files in the lib directory):

Dir[File.dirname(__FILE__) + '/lib/*.rb'].each {|file| require file }
share|improve this answer
   
thanks for this extra trick – Gaetan Dubar Apr 9 '09 at 19:04
6  
Yeap, this should be the selected answer :) – Nikos D Feb 11 '11 at 9:00
2  
You can also add all child directories like this Dir[File.dirname(__FILE__) + '/support/**/*.rb'].each {|file| require file } – jspooner Jul 5 '12 at 23:18
6  
It's probably safer to use File.join rather than making assumptions about forward/backward slashes: Dir[File.join(File.dirname(__FILE__), 'lib', '*.rb')].each {|file| require file } – Christopher Patuzzo Jul 6 '12 at 23:22
@ChristopherPatuzzo you are a live saver. I couldn't figure out why the files were never loaded. "\current\file\path/lib/*.rb" – clementine Oct 17 '12 at 18:59
Dir[File.dirname(__FILE__) + '/../lib/*.rb'].each do |file| 
  require File.basename(file, File.extname(file))
end

If you don't strip the extension then you may end up requiring the same file twice (ruby won't realize that "foo" and "foo.rb" are the same file). Requiring the same file twice can lead to spurious warnings (e.g. "warning: already initialized constant").

share|improve this answer
6  
Is this really the case? Documentation says: A feature will not be loaded if its name already appears in $". The file name is converted to an absolute path, so "require 'a'; require './a'" will not load a.rb twice. ruby-doc.org/core/classes/Kernel.html#M001418 – Derek Jan 29 '11 at 17:47
5  
My testing shows the same that Derek said: require "foo.rb"; require "foo"; will load foo.rb just once. – Rene Saarsoo Sep 30 '11 at 14:06

Try the require_all gem:

  1. http://github.com/jarmo/require_all
  2. https://rubygems.org/gems/require_all

It lets you simply:

require_all 'path/to/directory'
share|improve this answer
1  
You, sir, are awesome for making it and awesome for posting a link here. The link is stale these days, though. The gem can now be found at rubygems.org/gems/require_all and github.com/jarmo/require_all . – clacke Jun 9 '11 at 8:35
@clacke I added your links to the original answer, thanks for the comment. – Fábio Batista Aug 14 '11 at 21:01
I needed to include all of my ActiveRecord models, the require_all gem figured out all of the dependencies and required them perfectly. Thanks! – panupan Dec 7 '11 at 1:39

The best way is to add the directory to the load path and then require the basename of each file. This is because you want to avoid accidentally requiring the same file twice -- often not the intended behavior. Whether a file will be loaded or not is dependent on whether require has seen the path passed to it before. For example, this simple irb session shows that you can mistakenly require and load the same file twice.

$ irb
irb(main):001:0> require 'test'
=> true
irb(main):002:0> require './test'
=> true
irb(main):003:0> require './test.rb'
=> false
irb(main):004:0> require 'test'
=> false

Note that the first two lines return true meaning the same file was loaded both times. When paths are used, even if the paths point to the same location, require doesn't know that the file was already required.

Here instead, we add a directory to the load path and then require the basename of each *.rb file within.

dir = "/path/to/directory"
$LOAD_PATH.unshift(dir)
Dir[File.join(dir, "*.rb")].each {|file| require File.basename(file) }

If you don't care about the file being required more than once, or your intention is just to load the contents of the file, perhaps load should be used instead of require. Use load in this case, because it better expresses what you're trying to accomplish. For example:

Dir["/path/to/directory/*.rb"].each {|file| load file }
share|improve this answer
thank you so much – MaasSql Oct 2 '12 at 13:59
Dir[File.dirname(__FILE__) + "/app/**/*.rb"].each do |file|
  require file
end

This will work recursively on your local machine and a remote (Like Heroku) which does not use relative paths.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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