我已经配置了 capistrano,以便在我通过 capistrano 运行部署时在生产环境中编译资产。我使用 Ruby 1.9.3、Rails 3.2.13 和 MongoDb 数据库。问题仅在部署期间存在,在开发和生产中我都可以手动编译资产而没有任何问题
desc "Update the deployed code."
task :update_code, :except => { :no_release => true } do
run "cd #{current_path}; git fetch origin; git reset --hard #{branch}"
finalize_update
assets.precompile
end
namespace :assets do
desc "Assets precompileing"
task :precompile, :roles => :web, :except => { :no_release => true } do
run "cd #{current_path}; rm -rf public/assets/*"
run "cd #{current_path}; bundle exec rake RAILS_ENV=#{rails_env} assets:precompile"
end
end
但我收到了这个错误
executing command
/usr/local/rvm/rubies/ruby-1.9.2-p290/bin/ruby /my-app/path/shared/bundle/ruby/1.9.1/bin/rake assets:precompile:all RAILS_ENV=production RAILS_GROUPS=assets
rake aborted!
undefined method `[]' for nil:NilClass
/my-app/path/shared/bundle/ruby/1.9.1/gems/moped-1.4.5/lib/moped/protocol/reply.rb:71:in `command_failure?'
/my-app/path/shared/bundle/ruby/1.9.1/gems/moped-1.4.5/lib/moped/node.rb:82:in `block in command'
/my-app/path/shared/bundle/ruby/1.9.1/gems/moped-1.4.5/lib/moped/node.rb:582:in `[]'
/my-app/path/shared/bundle/ruby/1.9.1/gems/moped-1.4.5/lib/moped/node.rb:582:in `block (3 levels) in flush'
/my-app/path/shared/bundle/ruby/1.9.1/gems/moped-1.4.5/lib/moped/node.rb:581:in `map'
...
Tasks: TOP => assets:precompile
(See full trace by running task with --trace)
command finished in 14427ms
failed: "env RAILS_ENV=production sh -c 'cd /my-app/path/current; bundle exec rake RAILS_ENV=production assets:precompile'"
zlib(finalizer): the stream was freed prematurely.
所以它与资产中的任何特殊文件无关,我只使用纯 .js 和 .css 文件。
认为我正在使用的多个清单文件可能存在一些问题,但我添加了 config.assets.precompile += ['another-manifest.js', 'another-manifest.css']
到 application.rb ,如果我在部署期间关闭资产编译并在部署完成后手动执行,它在开发和生产中就像魅力一样。
我还尝试只留下一个只需要 self 的清单文件,并且错误仍然存在。
Mongoid 文档在提示部分 http://mongoid.org/en/mongoid/docs/tips.html中讨论了类似的问题
但我目前使用 1.9.3 Ruby build p392 所以应该没问题。
对此的任何帮助都会很棒!