You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to better manage these gems/ engines which have some interdependencies, I have written a script that can loop through all gems and run bundler commands like bundle update ..., and bundle install.
When using a tool like rbenv, this script will run in a couple of minutes. When using asdf, it takes ~15 minutes, because asdf is calling reshim for every gem/ engine where it will run the bundler command. Allowing an easy way to disable the automatic reshim would be extremely helpful.
The text was updated successfully, but these errors were encountered:
Intro
For this line of code here, allow users to skip it with an environment variable. For example:
Context
I have modularized my code and broken it off into separate gems/engines that all live near the main app. The folder structure resembles the following:
In order to better manage these gems/ engines which have some interdependencies, I have written a script that can loop through all gems and run bundler commands like
bundle update ...
, andbundle install
.When using a tool like
rbenv
, this script will run in a couple of minutes. When usingasdf
, it takes ~15 minutes, becauseasdf
is callingreshim
for every gem/ engine where it will run the bundler command. Allowing an easy way to disable the automaticreshim
would be extremely helpful.The text was updated successfully, but these errors were encountered: