I use MAMP for PHP/MySQL.
What do I need for RoR?
I am using OS X Leopard. I have already installed Ruby, Gems and Rails.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
sudo gem install passengerwill get you Phusion Passenger (mod_rails) which is pretty much the standard nowadays. There’s a nice preference pane for managing the server on Mac OS X and a Railscast about it.Alternatively,
sudo gem install mongrelto use the Mongrel server which you run using thescript/servercommand and access on port 3000. Rails includes the basic WEBrick server, but most developers use Mongrel or Passenger.