MacOS Maverickでbundle installする際に"fails to build native extensions"エラーが出る時、以下の方法で試してください。
command line developer toolsをインストールする
❏ まだXCodeがなかったら、Xcodeをインストール
❏ command line developer toolsを
Terminal
xcode-select --install
のコマンドでインストールできます。
後は
Terminal
sudo xcode-select -switch /Library/Developer/CommandLineTools
を実行してください。
###gccの調整
以下のコマンドを実行してください
Terminal
sudo ln -s /usr/bin/gcc /usr/bin/gcc-4.2
Terminal
export CC=gcc-4.2
(gccのバージョンは場合によって違います。それはエラーログを見たら分かります)
まだまだ情報が足りないと思いますので、後ほど追加します。