No commit activity in last 3 years
No release in over 3 years
A Bundler plugin that installs gems in an additional private Gemfile after bundle install.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

bundler-private_install

A Bundler plugin that installs additional gems listed in a separate Gemfile.

This is especially useful when you always use certain gems in development but don't want to add it to the project's Gemfile.


Blog post:

Loading Additional Ruby Gems in Development
Using your favorite gems without adding them to your project's Gemfile

Installation

Run the following inside a folder that does not have a Gemfile in it:

$ bundle plugin install bundler-private_install

How It Works

After running bundle install it will trigger another bundle install for any other Gemfile that contains eval_gemfile.

The assumption is that this other Gemfile has an eval_gemfile 'Gemfile', i.e. a dependency on the main Gemfile.

As to why you'd want to do this, see the blog post linked above.

License

The gem is available as open source under the terms of the MIT License.