在我的代码中,我有以下块
Tempfile.open([model.id.to_s, '.txt'], Rails.root.join('tmp')) do |file|
begin
file << somedata_i_have_before
model.file = file # using paperclip gem attached file
ensure
# close and delete file
file.close
file.unlink
end
end
这段代码在本地和生产环境中都可以正常工作......问题是我已经设置了Wercker应用程序来自动化测试和部署,但是上面提到的块在 wercker 上失败并返回以下错误
Errno::ENOENT:
No such file or directory @ rb_sysopen - /pipeline/build/tmp/539e01d4776572049647010020140615-1174-ajp5tf.txt
# ./lib/some_lib.rb:63:in `some_method'
任何想法如何解决这个问题,以便 wercker 上的构建通过?