在 Ruby 中包含模块

发布于 2024-11-26 09:03:37 字数 661 浏览 0 评论 0原文

我正在尝试包含一个 Ruby 模块。

在文件 helper.rb 中,我有这样的文本

module Helper
...
end

在文件 test.rb 中,我有这样的文本:

....
require 'helper'
...

这些文件位于目录的同一级别,但我不断收到此错误:

<internal:lib/rubygems/custom_require>:29:in `require': no such file to load -- helper (LoadError)
    from <internal:lib/rubygems/custom_require>:29:in `require'
    from test.rb:4:in `<main>'

我也尝试

include Helper

过 test.rb 并得到这个错误:

test.rb:4:in `<main>': uninitialized constant Object::Helper (NameError)

我做错了什么?

I am trying to include a Ruby module.

In the file helper.rb, I have this text

module Helper
...
end

In the file test.rb, I have this text:

....
require 'helper'
...

These files are on the same level of the directory yet I keep getting this error:

<internal:lib/rubygems/custom_require>:29:in `require': no such file to load -- helper (LoadError)
    from <internal:lib/rubygems/custom_require>:29:in `require'
    from test.rb:4:in `<main>'

I have also tried

include Helper

in test.rb and get this error:

test.rb:4:in `<main>': uninitialized constant Object::Helper (NameError)

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

若沐 2024-12-03 09:03:37

在 Ruby 1.9 中你应该使用

require_relative 'helper'

In Ruby 1.9 you should use

require_relative 'helper'
墨洒年华 2024-12-03 09:03:37

尝试 require './helper'。应该可以做到这一点。

Try require './helper'. That should do it.

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