Rails中通过shell命令写入本地文件
我正在尝试通过Rails中的shell命令编写一个文件..
基本上我有这个:
def self.collect_videos
%x[cd public/videos/ && exec viddl-rb http://www.youtube.com/watch?v=oHg5SJYRHA0]
sleep(30)
end
viddl本质上是这样的: https ://github.com/rb2k/viddl-rb
它仅在 Rails 控制台中工作正常,但在从 Rails 应用程序中作为函数调用时则不然。
如何修复它?
I am trying to write a file via shell command in Rails..
Basically I have this:
def self.collect_videos
%x[cd public/videos/ && exec viddl-rb http://www.youtube.com/watch?v=oHg5SJYRHA0]
sleep(30)
end
viddl is essentially this: https://github.com/rb2k/viddl-rb
It works fine just from rails console, but not when called as a function from Rails app..
How to fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
感谢马蒂亚斯·沃德曼(Mattias Wadman)回答了这个问题。但无法将评论标记为答案。
The question was answered thanks to Mattias Wadman. Could not mark comment as answer though.