rake 任务中的 Rails to_xls

发布于 2024-12-07 05:09:06 字数 259 浏览 0 评论 0原文

我正在尝试在我的 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 技术交流群。

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

发布评论

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

评论(2

眼角的笑意。 2024-12-14 05:09:06

您的 Rake 任务中是否需要“to_xls”

Did you require 'to_xls' in your Rake task?

筱武穆 2024-12-14 05:09:06

结果我的 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.

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