我正在尝试在我的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 aborted!uninitialized constant ToXls”有什么建议吗?
答案 0 :(得分:0)
你的Rake任务中有require 'to_xls'
吗?
答案 1 :(得分:0)
原来我的gem文件不会更新到新版本。我必须在它之后添加“〜> 1.0.0”并运行bundle install。