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

Currently, I have the stable version of a gem (specifically, nanoc3) installed with RubyGems. However, I would like to fork the developer's repository to hack on some stuff. What's the recommended way to have a gem installed (it doesn't actually have to be installed in a technical sense, just somewhere that I can use it if I need to without redownloading) but still work on its repository (and have the repository's lib directory loaded into the Ruby path)?

share|improve this question

1 Answer

up vote 2 down vote accepted

What I ended up doing was building the gem inside the repo, installing it with gem install, and then deleting ~/.gem/ruby/1.8/gems/nanoc3-3.1.0a1 and symlinking it to the repository root.

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.