Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use bundler to manage dependencies in my rails app, and I have a gem hosted in a git repository included as followed:

gem 'gem-name', :git => 'path/to/my/gem.git'

To update this gem, I execute bundle update but it also updates all the gem mentioned in Gemfile. So what is the command to update just one specific gem?

share|improve this question

2 Answers

up vote 7 down vote accepted

The way to do this is to run the following command:

bundle update --source gem-name
share|improve this answer

You simply need to specify the gem name on the command line:

bundle update gem-name
share|improve this answer
4  
This command seems to update all gems as well... – sailor Jun 29 '12 at 14:01
1  
Strange. That's what bundle help update says to do. Which version of bundler are you using? – Brandan Jun 29 '12 at 14:44
3  
bundle update gem-name will update the gem and "any of its dependencies". – yek Apr 19 at 21:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.