Is it possible to let Capistrano
print the output of bundler, when running the bundle command?
On the local machine it usually prints "using rails 4.2.1" etc. and I would love to have the same when deploying to my live server.
This is because Capistrano uses Bundler with the options --deployment --quiet
by default. So the --quiet
suppresses the desired output.
Add the following line to the production configuration of Capistrano:
set :bundle_flags, '--deployment'
You can find out more about Capistranos Bundler plugin from its repository.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With