rake 任务中的 Rails to_xls
我正在尝试在我的 rake 任务中使用rails to_xls gem。我的代码是:
tmp_file = Tempfile.new(['export_test', '.xls'])
ToXls::ArrayWriter.new(@logins_report, :name => 'export_test').write_io(tmp_file)
我收到一条错误,提示“rake 中止!未初始化的常量 ToXls” 有什么建议吗?
I am trying to use the rails to_xls gem in my rake task. My code is:
tmp_file = Tempfile.new(['export_test', '.xls'])
ToXls::ArrayWriter.new(@logins_report, :name => 'export_test').write_io(tmp_file)
I receive an error that says "rake aborted! uninitialized constant ToXls" Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 Rake 任务中是否
需要“to_xls”
?Did you
require 'to_xls'
in your Rake task?结果我的 gem 文件不会更新到新版本。我必须在其后添加“~> 1.0.0”并运行捆绑安装。
Turns out my gem file would not update to the new version. I had to add the "~> 1.0.0" after it and run bundle install.