What's the best way to require all files from a directory in ruby ?
|
How about:
|
|||||||||||||||||||||
|
|
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):
|
|||||||||||||||||||
|
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"). |
|||||||||
|
|
Try the require_all gem: It lets you simply:
|
|||||||||
|
|
The best way is to add the directory to the load path and then
Note that the first two lines return Here instead, we add a directory to the load path and then require the basename of each *.rb file within.
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
|
||||
|
|
This will work recursively on your local machine and a remote (Like Heroku) which does not use relative paths. |
||||
|
|