thoughtbot / appraisal

A Ruby library for testing your library against different versions of dependencies.
https://thoughtbot.com
MIT License
1.25k stars 107 forks source link

Allow specifying the `path` option to bundler #165

Closed nickcharlton closed 4 years ago

nickcharlton commented 4 years ago

The path option is often used to cache dependencies on CI, and this causing projects like Administrate to do unnecessary work.

It's important that we pass the absolute file path to --path, as otherwise it's assumed to be inside the gemfiles directory when run.

nickcharlton commented 4 years ago

Thanks @mike-burns!