How to update a gem with a source as github url on heroku?

We currently have one stone, the original repo is github, and we added it as

gem 'xyz', :git => ' git@github.com /sandip/abc.git' 

Now, after changing the code in github repo. How do we update the same stone on the hero? because heroku does not support a command like -

 heroku bundle update GEM_NAME 
+7
source share
1 answer

You need to update your Gem locally in your kit, commit and click:

 bundle update 

Your Gemfile.lock contains the gem versions that will be used by the application.

  GIT remote: git://github.com/xyz/abc.git revision: bc9ea93f50e848f71759669918635639b9f1aaa5 
+14
source

All Articles