从 RakeFile 调用 ruby​​ 文件

发布于 2024-10-12 16:16:31 字数 558 浏览 1 评论 0原文

我正在创建一个需要无轨迁移的应用程序。为此,我创建了一个 rake 文件来执行命令。

我的问题是如何从 rake 文件调用 ruby​​ 类函数。我想要这样的东西。考虑两者都在同一目录中

A级

定义b

放置“从 A 类调用方法 B”

结束

结束

RakeFile 中的

任务:创建do

A.new.b

结束

我想执行它

创建耙子

但目前我收到此错误

耙子中止!

没有要加载的文件--a

我正在使用 ruby​​ 1.9.1,rake (0.8.7)

提前感谢,

欢呼

Sameera

I'm creating an application which requires migrations without rails. For that I have created a rake file to execute commands.

My problem is how can I call a ruby class function from a rake file. I want something like this. consider both are in the same directory

class A

def b

puts 'calling method B from class A'

end

end

in the RakeFile

task :create do

A.new.b

end

I want to execute it as

rake create

But currently I'm getting this error

rake aborted!

no such file to load -- a

I'm using ruby 1.9.1, rake (0.8.7)

thanks in advance

cheers

sameera

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

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

发布评论

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

评论(1

恍梦境° 2024-10-19 16:16:31

您是否需要包含该类的文件?意思是,您是否使用过类似的语句,

require "path/to/a.rb" #where a.rb contains the class A

看起来像 ruby​​ 转换器无法找到在哪里寻找 A 类。

Have you required the file containing the class? Meaning, have you used any statement like

require "path/to/a.rb" #where a.rb contains the class A

It seems like ruby converter unable to find where to look for class A.

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