I want to deploy my simple rails 4.0 application via capistrano 3.0.
rails 4.0
capistrano 3.0
I use bundler 1.3.5 so I add capistrano-bundler gem to integ
bundler 1.3.5
I had:
set :bundle_flags, '--system --quiet'
Changed to:
set :bundle_flags, '--deployment --quiet'
This resolved a problem.