Rbenv, an unobtrusive rvm replacement
101–110 of 115 posts
Re: Rbenv, an unobtrusive rvm replacement
#102Earlier quoted context omitted.
To be fair, Wayne has always said that RVM was made for production first and development second. Not sure if it is fair to say it is not production ready since it has always been geared toward just that.
It doesn't matter what Wayne has always said. He's designed a collection of fragile shell script hacks that want to be run as root that fundamentally change the behavior of key system commands.
I no longer install ruby at a system level, not needed, only users running ruby stuff need ruby installed and never use distro ruby, creates all sorts of issues...
Re: Rbenv, an unobtrusive rvm replacement
#103Earlier quoted context omitted.
I looked at RVM a few weeks back while trying to set up a Rails app and was so frustrated I went outside and kicked a kitty. I am glad to see a project that should restore some of my sanity. Good work.
What was so frustrating about RVM?
Re: Rbenv, an unobtrusive rvm replacement
#104Looks interesting. It's always been pretty amazing to me that a system like RVM remains so popular when it depends on overriding the operation of basic commands like 'cd'.
That's the main reason I'm not using RVM. I depend on `cd` to work, every time, rock solid, especially when my system is unstable. I can't risk having a dependency or bug in their `cd` script breaking my most commonly used shell command.
Re: Rbenv, an unobtrusive rvm replacement
#105It would be somewhat cool if ruby-build knew how to look for an rbenv folder to install rubies into, or if rbenv knew how to drive ruby-build to put rubies in the right directory, but otherwise it's pretty nice.
That's a good idea... ruby-build could provide an `rbenv-install` plugin command for rbenv.
Re: Rbenv, an unobtrusive rvm replacement
#106It would be somewhat cool if ruby-build knew how to look for an rbenv folder to install rubies into, or if rbenv knew how to drive ruby-build to put rubies in the right directory, but otherwise it's pretty nice.
That's a good idea... ruby-build could provide an `rbenv-install` plugin command for rbenv.
Re: Rbenv, an unobtrusive rvm replacement
#107Re: Rbenv, an unobtrusive rvm replacement
#108Earlier quoted context omitted.
For that, I use Bundler and always install gems to vendor/bundle for maximum isolation and easy cleanup. :~ which bi bi: aliased to bundle install --path vendor/bundle
but does this not increase the size of your source control repository?
Re: Rbenv, an unobtrusive rvm replacement
#109Re: Rbenv, an unobtrusive rvm replacement
#110With RVM you can change the rubygems version for an installed ruby interpreter. Is something like these possible with rbenv too? i use rubygems -v 1.3.6 for ruby-1.8.7 and rubygems -v 1.8.6 for ruby-1.9.2. I remember i had problems using rubygems 1.8.6 with ruby-1.8.7