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

I read this question on stackoverflow, before asking it again. Relationships between Rubygems, Bundler, and RVM

well, there are many questions like this, but people who answered pretty tell the way they work with rubygems, rvm and bundler. And they have not explained how each of these work in isolation.

I am really confused with how these three (rubygems, rvm and bundler) work in isolation when we are installing gems. Please do not tell me how you work :) :) that will help me but I won't learn what is exactly happening when we play with rubygems, rvm and bundler.

My above single confusion can be broken down into these questions below.

  1. When I just have rubygems (without rvm or bundler), and when i install a gem, where is it getting installed ?
  2. When rubygems + rvm is installed, and when i install a gem, where is it getting installed ?
  3. when rubygems + rvm + bundler is installed, and when i install a gem, where is it getting installed?

Please help me understand this stuff with either resources on the web or by your detailed answers.

share|improve this question

4 Answers

up vote 23 down vote accepted
  1. To find out where gems are being installed to, run echo $GEM_HOME in a terminal.
  2. When using rvm, gems are installed into your rvm install as it changes $GEM_HOME. Running echo $GEM_HOME now would show a path into your rvm install.
  3. When bundler is added to the mix, gems will either be installed in $GEM_HOME, or, if you specify a path when running bundle install will be installed to that path. To find out where a gem is through bundler you can use bundle show gemname to get it's full path.
share|improve this answer
4  
fyi for #2 running 'rvm info' is also useful - prints out the entire ruby + rubygems environment thats currently in use. – ffoeg Jan 6 '11 at 5:00

use "gem env" to list the gem paths in each context. Without RVM gem env will report the system gem library paths With RVM gem env will report the rvm managed gem library paths

Bundler manages application dependencies and installs in the gem library in your environment. If you are using rvm+bundler, the gems will be installed in the rvm managed gem directories. If you are using without rvm, bundler will install gems in the system gem directories.

share|improve this answer

I'm also trying to understand how it works, the following blog post helped me a lot to have a better overview.

BTW it's a translation of a French article, the French version is better...

share|improve this answer

For finding path where gem is installed use

gem which gem_name

For finding executables (like html2haml) use

which executable_name

To avoid typing bundle exec html2haml which is recommended by bundler team use my game https://github.com/mpapis/rubygems-bundler

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.