From: Vince Angeloni Date: 2009-03-02T04:33:25+09:00 Subject: Re: 1.9 on OS X Luc Heinrich wrote: > On 1 mars 09, at 17:13, Jeff Schwab wrote: > >> What is the best way to install Ruby 1.9 on Apple OS X? > > MacPorts, which allows to install and use both Ruby 1.8 and Ruby 1.9 > at the same time. I used MacPorts to install 1.9.1 alongside 1.8 -- totally painless. Then if you want to use irb with 1.9, simply type "irb19" in Terminal and you will be running under 1.9.1. (Check this using "RUBY_VERSION" in Terminal with irb running). I'm not sure about Rails, but I simply altered my shebang line and Ruby 1.9.1 is working in Textmate: #!/opt/local/bin/ruby1.9 Macports installs ruby19 into /opt/local/bin along with a few other files. vince -- Posted via http://www.ruby-forum.com/.