I have a Gemfile with a private git repo in the following format:
gem 'magic_beans', :git => "git@git.example.com:magic_beans.git', :branch => 'super_beans'
When I bundle install
, the Gemfile.lock locks it to a specific SHA revision.
Can I get bundler to always check and use the latest SHA commit and/or update the Gemfile.lock? Notice that when I push updates to the super_beans
branch I am not modifying the gem version.
Ideally, every time I run bundle
it would check upstream git repo for a newer SHA revision of the branch.