Live data from Hacker News

RVM (Ruby Version Manager) 1.0.0

wayneeseguin.beginrescueend.com

31–40 of 41 posts

Re: RVM (Ruby Version Manager) 1.0.0

#31
post #27

Earlier quoted context omitted.

Don't forget Bundler. There's a lot of ambivalence to Bundler because of the painful journey to 1.0, but it's totally proportional to the difficulty of the problem, and I think they've really nailed it for 1.0.

I'm confused about Bundler and rvm's per-project ruby and gemsets, what's the difference?

Bundler works together with RVM gemsets. If you have an active RVM gemset, Bundler will use it.

The goal of Bundler is portability between deployments. It answers the question: "How do I package up everything required to run this app so I can deploy it anywhere."

Re: RVM (Ruby Version Manager) 1.0.0

#33
post #29

rvm is sweet for managing rubies but not so sweet in that it hijacks cd(). I like to cd without any apps meddling. Recommended fix: $ echo rvm_project_rvmrc=0 >> ~/.rvmrc

Are you referring to the auto switching of Ruby environments based on a directory change? If so, this latest version disables that by default

Are you sure about that? .rvm/scripts/cd still has this at the top [1]:

    # Source a .rvmrc file in a directory after changing to it, if it exists.
    # To disable this fature, set rvm_project_rvmrc=0 in $HOME/.rvmrc
Also, the new security features that Wayne mentions in this post suggest that a cd automatically leads to a check on the directory you cd into. Doesn't that imply that rvm still has to plug itself into cd? (I may be confused here.)

I have to admit the cd thing ended up throwing me for an interesting loop at one point. I was scripting and no matter what happened, cd was returning 0 (success) - even when the cd command was actually failing. I could not figure out for the life of me why the right exit status wasn't being reported. It turns out that rvm wasn't saving and then returning the exit status of cd itself. (So the exit status I was capturing wasn't actually that of cd.)

Long story short, two minutes in #rvm and Wayne had it fixed [2].

Edit: I think I see the confusion. Cldwalker is saying that he doesn't like rvm tinkering with cd. Bgentry is saying that rvm no longer automatically switches Ruby if it finds a .rvmrc in a folder (after you cd into it). That's right, but it doesn't change what is bothering Cldwalker: rvm does in fact still get in front of cd. (I think 'hijacking' is too strong, but I know what Cldwalker means by it.) If you use rvm, then by default every time you issue cd, rvm runs the code in [1] (part of which obviously punts to the built-in cd). You can disable this behavior, as Cldwalker says, by setting the environment variable rvm_project_rvmrc to 0. Unless I'm wrong, the default is still on.

[1] http://github.com/wayneeseguin/rvm/blob/master/scripts/cd

[2] http://github.com/wayneeseguin/rvm/commit/f9aa3adebcca547924...

Re: RVM (Ruby Version Manager) 1.0.0

#34
post #29

Earlier quoted context omitted.

Are you referring to the auto switching of Ruby environments based on a directory change? If so, this latest version disables that by default

Are you sure about that? .rvm/scripts/cd still has this at the top [1]: # Source a .rvmrc file in a directory after changing to it, if it exists. # To disable this fature, set rvm_project_rvmrc=0 in $HOME/.rvmrc Also, the new security features that Wayne mentions in this post suggest that a cd automatically leads to a check on the directory you cd into. Doesn't that imply that rvm still has to plug itself into cd ? (…

ah, you are correct, I saw this bit in the release note earlier and then assumed that Cldwalker was referring to the same issue.

So, setting rvm_project_rvmrc=0 will still execute RVM's cd script, but it will skip the part that loads an rvmrc

Re: RVM (Ruby Version Manager) 1.0.0

#35
post #34

Earlier quoted context omitted.

Are you sure about that? .rvm/scripts/cd still has this at the top [1]: # Source a .rvmrc file in a directory after changing to it, if it exists. # To disable this fature, set rvm_project_rvmrc=0 in $HOME/.rvmrc Also, the new security features that Wayne mentions in this post suggest that a cd automatically leads to a check on the directory you cd into. Doesn't that imply that rvm still has to plug itself into cd ? (…

ah, you are correct, I saw this bit in the release note earlier and then assumed that Cldwalker was referring to the same issue. So, setting rvm_project_rvmrc=0 will still execute RVM's cd script, but it will skip the part that loads an rvmrc

So, setting rvm_project_rvmrc=0 will still execute RVM's cd script, but it will skip the part that loads an rvmrc

Not exactly: setting 'rvm_project_rvmrc=0' causes rvm's cd script to immediately bail out. From .rvm/scripts/cd:

    if [[ "$rvm_project_rvmrc" -ne 0 ]] ; then
Everything else in the cd script hangs off that if. So by setting the environment variable, that whole branch (which is the whole script) is skipped and rvm won't get in front of cd.

Re: RVM (Ruby Version Manager) 1.0.0

#37
post #27

Earlier quoted context omitted.

Don't forget Bundler. There's a lot of ambivalence to Bundler because of the painful journey to 1.0, but it's totally proportional to the difficulty of the problem, and I think they've really nailed it for 1.0.

I'm confused about Bundler and rvm's per-project ruby and gemsets, what's the difference?

In my opinion, Bundler deprecates the need--or at least the need in most cases--to use gemsets. They are still a great feature to give you great control over exactly which gems are installed for testing purposes, but once you switch your applications to using Bundler, there's rarely a need to keep each project in its own gemset.

What Bundler does is establish a container for all gems (and ONLY those gems) that your application needs to run. This is much like an automatic, application-specific gemset.

It also solves the difficult problem of resolving your applications dependencies, locking your gems to a particular set of dependencies to assure consistency across environments and deployments. This is a very critical feature and really showed its ugly head when Rails 2.3.8 was released. Users suddenly found their projects breaking because one gem would load the latest version of activesupport installed on their system (e.g. activesupport-2.3.8) while Rails would require exactly version 2.3.5. Bundler solves this problem by determining that 2.3.5 is the correct dependency and locks the application to only load that version.

It is exactly because of this feature that gemsets are now rarely needed. A large repository of gems will no longer cause you pain and hassle, as Bundler will pick and choose (or install) whichever gems you need to run the project. No more manual management of gemsets. Hooray!

Re: RVM (Ruby Version Manager) 1.0.0

#38
post #24

Earlier quoted context omitted.

It's more comparable to virtualenv with virtualenvwrapper. Also, it manages multiple versions of Ruby (AFAIK virtualenv was coupled to a single version of Python) and has a per-directory dotfile (that way, when I switch to ~/Projects/something rvm automatically switches to correct ruby and gemset). It generally feels more 'complete' to me. I didn't do any serious work with virtualenv in quite some time, so this may h…

virtualenv -p python2.5 will create a virtualenv with the Python 2.5 interpreter. I like the per-directory dotfile approach for autodetecting/activating a virtual ruby setup.

Virtualenvwrapper gives you per-VENV postactivate hooks that do the same thing.

Re: RVM (Ruby Version Manager) 1.0.0

#39
At MWRC 2010 I wandered just outside the auditorium and ran into Wayne. I don't think we'd formerly met before, but we got to chatting and I told him I had played around a bit with RVM, but had some questions/issues.

Holy shit. I got the world's greatest crash course on, not just RVM, but bash scripting as well.

Wayne is not only a really nice guy and fun to hang with, but freakin' smart.

Super congrats on reaching 1.0.0.

Re: RVM (Ruby Version Manager) 1.0.0

#40

Here is a nice post on RVM (and Perlbrew): Two tools you should be using, if you aren't already http://ithaca.arpinum.org/2010/06/13/rvm-and-perlbrew.html

Wow. I just want to record how cool this feels. I got posted on Hacker News by someone other than me. Thanks.

You're very welcome.

And yes... I know that exact same feeling :) http://news.ycombinator.com/item?id=1151932

Post reply on HN