Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using RVM Gemsets & Bundler & RubyMine

I use RVM to manage Ruby versions.
In my project I use Bundler to manage gems for the project.

RVM also have gemsets.
Gem in gemset don't have a connection with Bundler's gem. ← Is this correct?
I came to this conclusion because gem files stored in different locations:
RVM gemset: ~/.rvm/gems/ruby-2.0.0-p247@myApp
Bundler: [my_app_dir]/vendor/bundle/gems
So app uses Bundler gems, not RVM gemset gems.

But when I add gem to my Gemfile, RubyMine IDE shows me warning, that this gem is not in RVM gemset. So I add this gem to RVM gemset also (just to get rid of this warning).

So the questions are:

  1. Is there any good reason to add gems in both places (RVM Gemset and Gemfile)?
  2. If no, then why RubyMine warning me about this?
like image 925
Alex Fedoseev Avatar asked Jul 28 '13 14:07

Alex Fedoseev


People also ask

What are RVM and Gemsets?

If you are using RVM(Ruby Version Manager) then using a gemset for each project is a good idea. A gemset is just a container you can use to keep gems separate from each other. Creating a gemset per project allows you to change gems (and gem versions) for one project without breaking all your other projects.

How do I create a Gemset in RVM?

To create a new gemset for the current ruby, do this: $ rvm 2.1. 1 $ rvm gemset create teddy Gemset 'teddy' created. You can also create multiple gemsets in a single command.

Should I use RVM or Rbenv?

RVM vs Rbenv - which Ruby Version Manager should I use? The short answer for developers is: it does not really matter, just pick one and be done with it - both RVM and Rbenv get the job done.


2 Answers

  1. Is there any good reason to add gems in both places (RVM Gemset and Gemfile)?

The gemset is incidental, the Gemfile is absolutely the place to declare your dependencies. Where you store those gems is up to you.

It sounds like Bundler is configured to store them in a project-local path, but you're expecting them to be in a gemset. Bundler got that configuration by running bundle install --path vendor/bundle/gems at some point. It stores that configuration in its project configuration file at project_dir/.bundle/config:

BUNDLE_PATH: vendor/bundle/gems

I'm unfamiliar with Rubymine, but if you run the Rails server using Bundler (i.e. bundle exec rails server) you can ignore that warning. Bundler will correctly load the gems listed in the Gemfile.

If you want to use a gemset instead of the Bundler cache, you can just remove that line from the Bundler configuration file and reinstall your gems with bundle install.

  1. If no, then why RubyMine warning me about this?

My guess is that Rubymine is not reading the Bundler project configuration (in project_path/.bundle/config) and does not understand where the gems are installed.

like image 63
Adam Stegman Avatar answered Sep 20 '22 10:09

Adam Stegman


You (or if you are working in a team, somebody of your team) has once done a bundle install and specified a installation-folder. In your case vendor/bundle/gems. Bundle remembers this setting and all next invocations of the bundle command will use the same path.

There is a good reason to do it that way: your application-folder will contain all requirements and will be easier to redistribute (for instance).

Now if you want that bundle installs your gems in the normal locations, you can do the following:

  • run bundle install --system which will use the default location
  • alternatively: bundle stores it settings in a config file, I think .bundle/config and you can check that one as well. Normally it is not needed, since bundle install --system will set that correctly again.
  • then you can safely remove the vendor/bundle/gems folder
like image 43
nathanvda Avatar answered Sep 21 '22 10:09

nathanvda