#bundle installでエラー
とあるプロジェクトをcloneしてきてbundle install
を実行したらエラーして以下のログを出力していました。
$ bundle install
Fetching source index from https://rubygems.org/
~略~
Installing xpath 2.0.0
Installing capybara 2.3.0
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
/Users/myuser/.rbenv/versions/2.1.2/bin/ruby extconf.rb
Command 'qmake -spec macx-g++ ' not available
Makefile not found
~略~
Process finished with exit code 5
qmake
が無いのでbuildできなかった模様です。
ググったらstackoverflowに同じ質問が載ってましたので、メモっておきます。
参考:http://stackoverflow.com/questions/11354656/error-error-error-installing-capybara-webkit
#解決策
参考リンクにそのまま書いてありますが、qmake
をインストールすればOKです。
brew install qt