Currently we have one gem whose source repo is github and we added it as
gem 'xyz', :git => 'git@github.com/sandip/abc.git'
Now, after changing some code at github repo. How do we update the same gem on heroku ?
because heroku does not support command like –
heroku bundle update GEM_NAME
You need to update your Gem locally in your bundle, commit and push:
Your Gemfile.lock contains the versions of the gems to be used by the application.