phusion / passenger_library

Phusion Passenger documentation

Home Page:https://www.phusionpassenger.com/docs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

update bundle install command

bkmgit opened this issue · comments

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

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?