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):
|
||
|
|
|
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
|
|||
|
|
|
|
Try the require_all gem: http://github.com/tarcieri/require_all/tree/master It lets you simply: require_all 'path/to/directory' |
||
|
|
