OSをYosemiteにアップデートするにあたって、もういちど1からスタートし直そうと思い、MacBook Airを初期化してみました。
もろもろ設定し直したのでメモ。
インストールしたアプリケーション
Sublime Text 2
Sublime Text - Text Editing, Done Right
一応マークアップエンジニアなので、つぎにSublime Text 2がないとはじまりません。
設定はこちらの2点(タブをスペースにする、スペースを表示する)のみ変更しています。
// Set to true to insert spaces when tab is pressed "translate_tabs_to_spaces": true, // Set to "none" to turn off drawing white space, "selection" to draw only the // white space within the selection, and "all" to draw all white space "draw_white_space": "all",
Dash
https://itunes.apple.com/jp/app/dash-docs-snippets/id458034879?mt=12&uo=4&at=10l16903
社内のスーパーエンジニアに勧められたので一応インストールしていますが、全然つかいこなせていません。
nodebrew
curl -L git.io/nodebrew | perl - setup
vim .bash_profile
で、
export PATH=$HOME/.nodebrew/current/bin:$PATH
を追加。
source ~/.bash_profile
で、.bash_profileを再読み込み。
のちにnpmがインストールされたら、
npm update -g
で最新版にアップグレード。
node
nodebrew install stable
nodebrew use stable
gem(アップデート)
sudo gem update --system
scss
sudo gem install sass
compass
sudo gem install compass
grunt-cli
npm install -g grunt-cli
bower
npm install bower -g
homebrew
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
brew update
Rails
sudo gem install rdoc
sudo gem install rails
MySQL
brew install mysql
rbenv
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
rm -rf ~/.rbenv/plugins/ruby-build
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
とりあえず、ひとまずはこんなものでしょうか。