capybara needs qt5 to work with react. OSX probably has qt 4 installed by default.
thoughtbot/capybara-webkit#666
brew uninstall qt
brew install qt5
brew linkapps qt5
brew doctor
gem uninstall capybara-webkit
# use correct path to qt5 version:
# https://github.com/thoughtbot/capybara-webkit/issues/678
QMAKE=/usr/local/Cellar/qt5/5.4.2/bin/qmake bundle install
@evan-007 @StefanoDeVuono, will this work on remote machines, such as Jenkins or SauceLabs?