I am interested in how RVM and RBEnv actually work. Obviously they swap between different versions of Ruby and gemsets, but how is this achieved? I had assumed they were simply updating symlinks, but having delved into the code (and I must admit my knowledge of Bash is superficial) they appear to be doing more than this.
|
feedback
|
|
Short explanation: rbenv works by hooking into your environment's First, rbenv creates shims for all the commands ( These shims live in a single directory (
Then any time you run Each shim is a tiny Bash script that in turn runs The
(You can set a project-specific Ruby version with the Armed with an For a thorough look at exactly what happens under the hood, try setting Now, rbenv is just concerned with switching versions, but a thriving ecosystem of plugins will help you do everything from installing Ruby to setting up your environment, managing "gemsets" and even automating I am not quite sure what IRC support has to do with switching Ruby versions, and rbenv is designed to be simple and understandable enough not to require support. But should you ever need help, the issue tracker and Twitter are just a couple of clicks away. Disclosure: I am the author of rbenv, ruby-build, and rbenv-vars. | |||||||
feedback
|
|
I have wrote an in depth article : http://niczsoft.com/2011/11/what-you-should-know-about-rbenv-and-rvm/ the basic difference is in where the shell environment is changed:
Also the thing about RVM is it covers a lot more then just managing rubies, it has a lot more than any other tool (there are others apart from RVM and rbenv: https://twitter.com/#!/mpapis/status/171714447910502401) Do not forget about instant support you get on irc in #rvm channel on freenode servers. | ||||
feedback
|
Gives you approximately
And it prepends
to | |||
|
feedback
|
|
So to summarise the excellent answers above, the main practical difference between RVM and rbenv is when the version of Ruby is selected. rbenv rbenv adds a shiv to the start of your path, a command with the same name as Ruby. When you type ruby at a command line the shiv is run instead (because it is also called ruby and comes first in the path). The shiv looks for an environment variable or .rbenv_version file to tell it which version of ruby to delegate to. RVM RVM allows you to set a version of Ruby directly by calling rmv use. In addition it also overrides the cd system command. When you cd into a folder that contains a .rvmrc file, the code inside the .rvmrc file is executed. This can be used to set a ruby version when you enter a directory, or anything else you fancy. Other differences There are of course other differences. RVM has gemsets out of the box, while rbenv requires just a little more hacking (but not much). Both are functional solutions to the problem. | ||||
|
feedback
|