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

How would I code the following in a rake file (RubyGems.org)?

gem install ruby-debug19 -- --with-ruby-include=/Users/etagwerker/.rvm/src/ruby-1.9.2-head

What I currently have looks like this:

gem "ruby-debug19", "~> 0.11.6"

But I now want to update it? Thanks.

share|improve this question

1 Answer

up vote 0 down vote accepted

before running bundler install

you need to configure bundler with:

bundle config build.ruby-debug19 --with-ruby-include=/Users/etagwerker/.rvm/src/ruby-1.9.2-head

good luck

share|improve this answer

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.