On the maintainability of Ruby
On the maintainability of Ruby
Posted Jan 21, 2011 4:25 UTC (Fri) by lambda (subscriber, #40735)In reply to: On the maintainability of Ruby by rfunk
Parent article: On the maintainability of Ruby
I have never seen RVM instructions that include "gem install rvm". The instructions from the RVM site itself are:
To install and/or update the latest code from the github repository ( requires git ):$ bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-head )
I think that only people who are already familiar with Ruby and RubyGems will assume that the way to install RVM is with "gem install rvm", but when you think about it, that doesn't make much sense as RVM should manage your Ruby and Gem environments, not be installed within them.
Posted Jan 21, 2011 15:31 UTC (Fri)
by rfunk (subscriber, #4054)
[Link] (2 responses)
Sorry, looks like either installation instructions have changed since I installed it, or I misremembered. I'm pretty sure the system-wide install instructions are new though.
Posted Jan 22, 2011 0:33 UTC (Sat)
by lambda (subscriber, #40735)
[Link]
Have you never downloaded a tarball, untarred it, and run
Posted Jan 24, 2011 17:45 UTC (Mon)
by docwhat (guest, #40373)
[Link]
Ciao!
Posted Jan 21, 2011 19:37 UTC (Fri)
by sorpigal (guest, #36106)
[Link]
On the maintainability of Ruby
On the maintainability of Ruby
./configure; make; make install
before? I don't really see the difference between this and that. And if you want, you can download the script, inspect it first, and then run it; there's no reason to follow the directions exactly. My point is that RVM doesn't depend on Ruby or RubyGems as it is just a collection of shell scripts to make it easier for you to manage several copies of Ruby and RubyGems.
On the maintainability of Ruby
Oh my... nothing makes my heart race like dumping a stream of bytes from a web site into an interpreter.
On the maintainability of Ruby