This easily breaks code as far as I know. We should almost always use require_relative for requiring other code files as the cwd can change and then the code breaks. I think config.ru is the only place that gets eval``d that should userequire` for files?!
This easily breaks code as far as I know. We should almost always use
require_relative
for requiring other code files as thecwd
can change and then the code breaks. I thinkconfig.ru
is the only place that getseval``d that should use
require` for files?!