我已经配置了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构建p392所以应该没问题。
对此的任何帮助都会很棒!
答案 0 :(得分:0)
如果您有asset-url
等image-url
助手,则样式文件必须为.scss
。
在纯CSS中使用scss辅助程序会在预编译过程中引发链轮错误,并破坏您的部署。