MacBook にインストールしているアプリやツールをメモする代わりに Brewfile を作った

MacBook の買い替えに備えて、インストールしているアプリやツールをたまに Evernote にメモしていたけど、それをやめて Brewfile を作ることにした。

update || true

tap homebrew/versions || true
install git || true
install go || true
install mercurial || true
install rbenv || true
install ruby-build || true
install vim --devel --with-lua || true
install zsh || true

tap phinze/homebrew-cask || true
install brew-cask || true
cask install alfred || true
cask install appcleaner || true
cask install bathyscaphe || true
cask install ccleaner || true
cask install clamxav || true
cask install dash || true
cask install dropbox || true
cask install evernote || true
cask install google-chrome || true
cask install iterm2 || true
cask install onyx || true
cask install skitch || true
cask install skype || true
cask install sourcetree || true
cask install the-unarchiver || true
cask install vagrant || true
cask install virtualbox || true
cask install vlc || true

Brewfile のある場所で

brew bundle

を実行するだけで、ツールとアプリをインストールできる。Boxen はその複雑さに挫折したので、自分にはこれくらいシンプルな方が丁度いい。