Ruby Rails Install For Mac
Ruby For Mac
In this tutorial i will guide you through the steps for installing ruby and rails gem on your freshly installed MacOS X mavericks 10.9. In this tutorial i will use ( ruby version manager ) to install ruby and nano as a text editor. So let’s get started Install required Components 1. Xcode (command line tools ) Install xcode and then install or just install command line tools stand alone.
Upgrade Ruby On Mac
Open terminal and type xcode-select -install and choose install 2. Homebrew homebrew is awesome package manager for mac, if you used mac before its most chances that you know about that and for the newbie its like apt-get and yum-install tool for mac open terminal and paste: ruby -e '$(curl -fsSL after installation open terminal and run brew doctor Start Installation 1. Installing mysql ( & setup path ) i prefer mysql as my database. There are two most common ways to install mysql in your mac, First by using official DMG file Second by using homebrew. Install using homebrew brew install mysql after installation open your.bashrc file or if you are then open.zshrc file and add at the end ( for DMG installation ) export PATH=$PATH:/usr/local/mysql/bin for brew installation export PATH=$PATH:$(brew -prefix mysql)/bin 2.