Skip to content

Instantly share code, notes, and snippets.

@RyanMorgan
Last active February 16, 2016 19:52
Show Gist options
  • Save RyanMorgan/3c8a3f1885a1027e3bce to your computer and use it in GitHub Desktop.
Save RyanMorgan/3c8a3f1885a1027e3bce to your computer and use it in GitHub Desktop.
New Mac Install (10.11 - El Capitain)

#Installing a Mac!

First off, we need to install Homebrew in order to install just about everything

xcode-select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor
brew install caskroom/cash/brew-cask
brew install ack autojump automake colordiff curl git git-flow hub icoutils imagemagick libmemcached memcached openssl ossp-uuid qt readline redis tmux wget libxml2
brew cask install google-chrome atom github-desktop steam skype utorrent torbrowser sabnzbd vlc cyberduck mamp mapbox-studio hex-fiend unetbootin karabiner gpgtools postgresql quicklook-csv quicklook-json virtualbox the-unarchiver paparazzi vmwarefusion

Then, killmouseaccel

curl -O http://ktwit.net/code/killmouseaccel
mv killmouseaccel /Applications/
chmod +x /Applications/killmouseaccel
echo "/Applications/killmouseaccel mouse" >> ~/.bash_profile

Now, set up rails!

\curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
rvm get stable --autolibs=enable
rvm install ruby-2.3.0
gem update --system
rvm gemset use global
gem update
gem install bundler
gem install nokogiri
rvm use ruby-2.3.0@rails4.2 --create
gem install rails

#To-do: Include Office/Acrobat/Photoshop into cask Set up bash profile

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment