# File lib/require_all.rb, line 147 147: def require_rel(*paths) 148: # Handle passing an array as an argument 149: paths.flatten! 150: return false if paths.empty? 151: 152: source_directory = File.dirname caller.first.sub(/:\d+$/, '') 153: paths.each do |path| 154: require_all File.join(source_directory, path) 155: end 156: end