Reputation: 2446
I am not sure if I am missing anything here! How do I execute bundle show GEM_NAME
for my heroku app?
I wanted to see what version of gem is installed on the running heroku application. I have messed up with my local bundle and now one of the gem is upgraded and its not backword compatible!
Any help?
Upvotes: 0
Views: 177
Reputation: 65435
Assuming you're using Heroku Cedar, you can run:
$ heroku run bundle show GEM_NAME
Upvotes: 3