为什么在 Ruby 中使用 require 或 autoload 时必须插入 Dir.pwd ?
这对我来说似乎是 Ruby 1.9 的问题,但每当我尝试使用 require "lib/mylibrary"
之类的东西来 require 或自动加载源代码时,Ruby 都会失败,并出现“没有要加载的文件”错误。我总是必须这样插入 Dir.pwd: require "#{Dir.pwd}/lib/mylibrary"
我到处都能看到源代码,不需要查找当前工作目录来包含源文件。我缺少什么?
This seems to be a Ruby 1.9 problem for me, but anytime I try to require or autoload source with something like require "lib/mylibrary"
Ruby fails with a "No such file to load" error. I always have to interpolate Dir.pwd thusly: require "#{Dir.pwd}/lib/mylibrary"
I see source everywhere that doesn't need to look up the present working directory to include source files. What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$LOAD_PATH
变量确定 Ruby 将检查要加载的文件的位置。从 Ruby 1.9 开始,默认情况下当前目录不在加载路径中,但您可以使用 require_relative 方法来请求相对于当前工作目录的文件。请参阅这个问题了解更多详情。
The
$LOAD_PATH
variable determines the places that Ruby will check for files to load. As of Ruby 1.9, the current directory is not in the load path by default, but you can use therequire_relative
method to require files relative to the current working directory.See this question for more details.