While bundle:install
phase after deploy:finalize_update
,i\'m getting an error about nokogiri. It suggests ,
** [out :: *******] Make s
Connect to you host with deployer user, than try install bundle by yourself:
cd {your last release path}
bundle config build.nokogiri --with-xml2-include=/usr/include/libxml2/libxml
bundle install --gemfile Gemfile --path shared/bundle --deployment --quiet --without development test
Than run capistrano manually.
This worked for me.