Hey,
I have installed Ruby and Rails in Mac and I want to keep it here.
I have read a few tutorials and I think I have this working :)
A few things to do in the Terminal:
Installing Homebrew
Done, working!
I have installed Ruby and Rails in Mac and I want to keep it here.
I have read a few tutorials and I think I have this working :)
A few things to do in the Terminal:
Installing Homebrew
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
Installing RVM
\curl -L https://get.rvm.io | bash -s stable
Close and reopen Terminal
Installing Xcode
Install Xcode via App Store
Installing Command Line tools
Open Xcode, go to Preferences -> Downloads -> Components and install the Command Line tools
Installing Ruby
rvm install 1.9.3
Set that ruby as your default
rvm --default use 1.9.3
Update your gems
gem update --system 1.8.24
Installing Rails
gem install rails -v 3.2.14
Done, working!