phusion / passenger_library

Phusion Passenger documentation
https://www.phusionpassenger.com/docs
Other
47 stars 111 forks source link

update bundle install command #107

Closed bkmgit closed 2 years ago

bkmgit commented 2 years ago

replace

bundle install --deployment --without development test

with

bundle config set --local deployment 'true'
bundle config set --local without 'development test'
bundle install

due to deprecation

CamJN commented 2 years ago

Looks like bundle config is supported back to 1.0: https://bundler.io/v1.0/man/bundle-config.1.html so this should be a very safe change. Want to open a PR?

bkmgit commented 2 years ago

Done #108