Bundle install selected group into custom path
问题 As a follow up to Bundle deployment only for selected gems, using the solution of blacklisting using --without option, for example: group :runtime do gem 'rails' ... end group :runtime_unpackaged do gem 'less2sass' end The runtime_unpackaged can be installed using the command: bundle --path vendor/bundle --without runtime The runtime group is installed through debian packages as the application itself is packaged as a .deb package. But then all other gems at group runtime won't be handled