从 RakeFile 调用 ruby 文件
我正在创建一个需要无轨迁移的应用程序。为此,我创建了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否需要包含该类的文件?意思是,您是否使用过类似的语句,
看起来像 ruby 转换器无法找到在哪里寻找 A 类。
Have you required the file containing the class? Meaning, have you used any statement like
It seems like ruby converter unable to find where to look for class A.