Skip to content

Instantly share code, notes, and snippets.

@pustovalov
Last active October 26, 2015 03:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pustovalov/a51e022ae147c1b1685e to your computer and use it in GitHub Desktop.
Save pustovalov/a51e022ae147c1b1685e to your computer and use it in GitHub Desktop.
Install packages and apps via brew
  • Install Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • Install homebrew-bundle
brew tap Homebrew/bundle
  • Set path for app's
touch ~/.bash_profile; nano ~/.bash_profile
export HOMEBREW_CASK_OPTS="--appdir=/Applications"
source ~/.bash_profile
  • Create Brewfile
touch ~/Brewfile; nano ~/Brewfile

paste packages to Brewfile

  • Run brew bundle
brew bundle
  • Install rvm
\curl -sSL https://get.rvm.io | bash -s stable --ruby

Result

brew 'caskroom/cask/brew-cask'
brew 'openssl'
brew 'wget'
brew 'optipng'
brew 'redis', restart_service: true
brew 'mysql'
brew 'postgresql'
brew 'httpie'
brew 'imagemagick'
brew 'git'
brew 'python'
brew 'node'
brew 'zsh'
brew 'ctags'
brew 'jpeg'
brew 'phantomjs'
cask 'caffeine'
cask 'vlc'
cask 'dropbox'
cask 'atom'
cask 'vlc'
cask 'spotify'
cask 'telegram'
cask 'slack'
cask 'adobe-reader'
cask 'adobe-creative-cloud'
cask 'google-drive'
cask 'lastfm'
cask 'chromium'
cask 'firefox'
cask 'gitter'
cask 'sourcetree'
cask 'opera'
cask 'skype'
cask 'viber'
cask 'google-chrome'
cask 'iterm2'
cask 'transmit'
cask 'gitup'
cask 'mactracker'
cask 'teamviewer'
cask 'the-unarchiver'
cask 'tunnelbear'
cask 'sequel-pro'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment