When developing an application where you have split out shared functionality to multiple dependent gem repositories can get cumbersome when you
- need to edit the Gemfile in order to swap local
:path
sources with:git
or just plain Rubygems sources, - then forget to
bundle update
, - wonder why your git repository is dirty and it's just the modified
Gemfile
andGemfile.lock
, - accidentally commit the
Gemfile.lock
with local:path
sources bundled etc. etc.
So what about this strategy:
A. Create a file .Gemfile.local
containing:
base = '..' # might need to tweak this according to your directory layout
instance_eval File.read(File.expand_path('Gemfile'))
B. Change your actual Gemfile
to something like this:
base ||= 'git://github.com/travis-ci'
type = base[0, 2] == '..' ? :path : :git
gem 'foo', type => "#{base}/foo"
gem 'bar', type => "#{base}/bar"
C. Add the .Gemfile*
to your .gitignore
file so that other developers can create their own .Gemfile.local
and tweak the base
path to their directory layout.
D. Switch between both Gemfiles using export BUNDLE_GEMFILE=.Gemfile.local
and export BUNDLE_GEMFILE=Gemfile
Voila. It is acceptably easy to switch between using local vs remote gem sources with just a few lines of code. Switching to local/remote gem sources won't dirty the git repository.
Obviously, if you've changed your Gemfile then you still need to remember to switch to remote gem sources and bundle update
once you're done and want to commit/push changes (where you don't gitignore the Gemfile.lock
).
What do you think?
@svenfuchs I'd go for D. I think it's the least painful, and you should be able to commit your
Gemfile.lock
andGemfile.local.lock
without hitting any major issues.