Is this possible force bunlder to always get the latest commit? Something like:
gem "gemname", :git => "git@bitbucket.org:/username/gemname.git", ref: :force-latest
Is this possible force bunlder to always get the latest commit? Something like:
gem "gemname", :git => "git@bitbucket.org:/username/gemname.git", ref: :force-latest
you can try to use master
branch to get latest commit
lets for rails
gem "rails", github: "rails/rails", branch: "master"
I believe this should work:
bundle update gemname
The bundle update
command uses the latest available version of the named gem that is compatible with the specification in your Gemfile.