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
Most gemfiles are sharing the same structure/gems and when it's time to update dependencies, we have to update all the them. Recently, I came across Bundler's DSL where you can call eval_gemfile in it.
For instance gemfiles/rack_3_0.gemfile could by simplify as
Personnally, when creating a new Gemfile, I just copy/past from an existing one and changing the gem manually. Configuring Appraisals feels cumbersome.
Most gemfiles are sharing the same structure/gems and when it's time to update dependencies, we have to update all the them. Recently, I came across Bundler's DSL where you can call
eval_gemfile
in it.For instance
gemfiles/rack_3_0.gemfile
could by simplify asThat way all specific Gemfiles could rely on the base Gemfile to fill the common structure and we could drop Appraisals
The text was updated successfully, but these errors were encountered: