为什么在 Ruby 中使用 require 或 autoload 时必须插入 Dir.pwd ?

发布于 2024-11-09 02:40:32 字数 236 浏览 0 评论 0原文

这对我来说似乎是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘和柠 2024-11-16 02:40:32

$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 the require_relative method to require files relative to the current working directory.

See this question for more details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文