From: "Eregon (Benoit Daloze)" Date: 2012-07-06T20:06:20+09:00 Subject: [ruby-core:46233] [ruby-trunk - Bug #4487] require_relative fails in an eval'ed file Issue #4487 has been updated by Eregon (Benoit Daloze). naruse (Yui NARUSE) wrote: > Eregon (Benoit Daloze) wrote: > > From the process current working directory I guess, especially since you almost always launch IRB from a terminal. > > require_relative is introduced to avoid accidentally require a malicious file on the current working directory. > So it can't be acceptable. > Use require or load on such case. I see, you're right. Indeed, with this in mind I think it's not worth changing, and the actual require_relative behavior is clearer (relative to "this file" directory, if there is no accurate "this file", just #raise). ---------------------------------------- Bug #4487: require_relative fails in an eval'ed file https://bugs.ruby-lang.org/issues/4487#change-27861 Author: rogerdpack (Roger Pack) Status: Assigned Priority: Normal Assignee: matz (Yukihiro Matsumoto) Category: Target version: ruby -v: - =begin Hello all. $cat eval_me1.rb eval(File.read('eval_me2.rb'), binding, File.expand_path('./eval_me2.rb')) $cat eval_me2.rb require_relative 'eval_me1.rb' $ ruby eval_me1.rb C:/dev/ruby/faster_require/spec/eval_me2.rb:1:in `require_relative': cannot infer basepath (LoadError) from C:/dev/ruby/faster_require/spec/eval_me2.rb:1:in `
' from eval_me1.rb:1:in `eval' from eval_me1.rb:1:in `
' I suppose was assuming that if eval included a filename, then require_relative would work from within it. Perhaps I am mistaken? Thanks! -r =end -- http://bugs.ruby-lang.org/