Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rubygems, Bundler and RVM confusion

I read "Relationships between Rubygems, Bundler, and RVM" before asking it again.

Well, there are many questions like this, but people who answered say 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 the three work in isolation when we are installing gems. Please do not tell me how you work, which will help me, but I won't learn what is happening when we play with them.

My confusion can be broken down into these questions. Where is a gem installed when:

  1. I just have Rubygems (without RVM or Bundler)?
  2. Rubygems and RVM are installed?
  3. Rubygems, RVM and Bundler are installed?

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

like image 775
Anand Avatar asked Jan 05 '11 12:01

Anand


People also ask

What is Rubygems bundler?

Bundler provides a consistent environment for Ruby projects by tracking and installing the exact gems and versions that are needed. Bundler is an exit from dependency hell, and ensures that the gems you need are present in development, staging, and production. Starting work on a project is as simple as bundle install .

Should bundler be in Gemfile?

In order to require gems in your Gemfile , you will need to call Bundler. require in your application. If some of your gems need to be fetched from a private gem server, this default source can be overridden for those gems.

Is bundler included with Ruby?

As of Ruby 2.6. 0preview3, Bundler is part of core Ruby.

What is Ruby Gemfile?

A Gemfile is a file that is created to describe the gem dependencies required to run a Ruby program. A Gemfile should always be placed in the root of the project directory.


2 Answers

  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 its full path.
like image 113
idlefingers Avatar answered Oct 04 '22 04:10

idlefingers


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 into 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 it without RVM, bundler will install gems in the system gem directories.

like image 39
Aditya Sanghi Avatar answered Oct 04 '22 04:10

Aditya Sanghi