Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do you check in your rvmrc file?

Ruby Version Manager allows us to use an .rvmrc file in each project to set up which ruby version and gem set to load. Should this file be checked in to source control? Or does this presume too much about other developers' working environment?

like image 499
Andrew Vit Avatar asked Aug 27 '10 09:08

Andrew Vit


People also ask

What is Rvmrc?

The project rvmrc files are intended to be used to setup your project's ruby environment when you switch to the project root directory.

What is Ruby version file?

Many Ruby (or Rails) projects will include a simple .ruby-version file, which simply specifies a version number, for example: 2.4.2. Popular tools to help you manage your Ruby version are: Ruby Version Manager (RVM)


2 Answers

Source Control Management is mainly about reproducibility: are you able to reproduce a version of a development effort based on what you have stored in your SCM?

If that .rvmrc file is needed for any developer on your project to be able to work (with the right artifacts), then yes, you should versioned it.

As mentioned in RVM Best Practices:

No. 2 - Check your rvmrc into source control.

By checking the aforementioned rvmrc into source control along side your app, you're ensuring all users have a consistent environment when they're using rvm.

By also automating gemset installs and the like (e.g. check out the rvmrc in the rvm-site repository or the TEDxPerth repostory's rvmrc) you also make getting started as simple as changing directory.

On top of this, you can also automatically make your deployments setup your application specific environment.

Other developers can turn of use of gemsets on their RVM with:

echo rvm_ignore_gemsets_flag=1 >> ~/.rvmrc 

This will make them use default gemset always.

like image 134
VonC Avatar answered Sep 28 '22 07:09

VonC


I would actually advise against keeping .rvmrc in SCM. Two specific reasons:

  1. If you use gemsets you enforce other developers to use the same gemset (while some might prefer to have all their gems in the global gemset).

  2. You make it hard for other developer(s) to run the project on a different Ruby version. Sure, on production it might run on 1.9.2-p290, but why should I not be permitted to run the app locally on 1.9.3-p0?

Generally it enforces too much on each developer (same story as database.yml, which as well should not be kept in SCM). A note in the README of the project of the "production running" Ruby version is enough imo.

like image 25
Paweł Gościcki Avatar answered Sep 28 '22 09:09

Paweł Gościcki