I have downloaded Lion and looking to install Ruby on Rails I have been scanning the web for a way to do this but can't seem to find a easy way, could anyone point me in the correct direction.

Help Much Appreciated

Thanks

link|improve this question

25% accept rate
See this thread, stackoverflow.com/questions/6765098/… – Snips Aug 3 '11 at 19:38
feedback

5 Answers

up vote 8 down vote accepted

The best way to get up to speed quickly with the newest or whichever selected versions of Ruby and Rails is to install RVM on your machine. A nice easy howto for this is located here. http://eddorre.com/posts/rails-ultimate-install-guide-on-os-x-lion-using-rvm-homebrew-and-pow

link|improve this answer
this unleashed all kinds of postgres problems for me – JohnMerlino Dec 21 '11 at 16:20
such as? This kind of comment is not helpful, and is just your red mist to justify a down vote. – nitecoder Jan 3 at 4:43
feedback

Below I try to resume my rails installation. It should work well.

1) Download Xcode from Apple Application Store :

use this link : xcode

2) Install xcode :

Use finder=>applications to locate "Xcode installation icon and double-click on it to begin the installation

3) use a terminal to install git:

gem install git

and put this line in your .bash_profile (create one if none exists) :

export PATH=$PATH:/usr/local/git/bin/

4) use a terminal to install rvm:

bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )

and run this command to update your .bash_profile :

echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile

5) use a terminal to install ruby 1.9.2 and rails:

rvm install 1.9.2
rvm --default 1.9.2
gem update
gem install rails
link|improve this answer
1  
I want to install Ruby 1.9.2, because there is a problem with OpenSSL in Ruby 1.9.3. I'm on OS X 10.7.3 and have Xcode 4.3.0. However Xcode 4.2+ is only supported by Ruby 1.9.3. christopherirish.com/2011/09/02/… – neoneye Feb 22 at 11:20
feedback

Mac OS X comes with Rails installed. If you want to install a different version yourself, see the documentation and rvm.

link|improve this answer
Does it come with Rails? Interesting. I only thought it came with Ruby. – Zach Inglis Jul 27 '11 at 7:35
Yes, I'm fairly sure. Have you tried running rails at the command line? – jtbandes Jul 27 '11 at 7:36
Not sure but it cime with an old version of rubygem ^^ – Awea Jul 27 '11 at 7:54
Yes, I think it still comes with ruby 1.8.7, and perhaps rails 2 (though I'm not sure). rvm is a good option if you want a newer version of either. – jtbandes Jul 27 '11 at 7:56
1  
I also have this command and the date of it's modification time is the same as the day when I upgraded to Lion. I've only had Ruby version 1.9.2 installed with rvm on my system (before and after the upgrade to Lion). The /usr/bin/rails command is just a shell script that outputs a message on how to install rails using gem. – Kristinn Örn Sigurðsson Jul 31 '11 at 23:52
show 1 more comment
feedback

Personnaly i have follow this link to install rails with rvm on Mac OS X Lion and i use pow to run localy my application.

link|improve this answer
feedback

As of the latest version of lion (and having installed sass/compass/haml), if you type "rails" in the terminal and you dont have it, it will tell you to just do a sudo install right there. Hope its as easy for you as it was for me.

link|improve this answer
feedback

protected by Community Mar 1 at 23:02

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.