Not able to install capybara-webkit using bundle install command in Rails 4 Not able to install capybara-webkit using bundle install command in Rails 4 ruby ruby

Not able to install capybara-webkit using bundle install command in Rails 4


Installation instructions are in the capybara-webkit wiki - https://github.com/thoughtbot/capybara-webkit/wiki/Installing-Qt-and-compiling-capybara-webkit . You'll want to install Qt 5.5.1 (5.6 is only supported if you build the QtWebKit module separately)


Ubuntu

sudo apt-get updatesudo apt-get install qt5-default libqt5webkit5-dev gstreamer1.0-plugins-base gstreamer1.0-tools gstreamer1.0-x


'qmake' is not recognized likely means that Qt is not installed

brew updatecd $( brew --prefix )/Homebrew/Library/Taps/homebrew/homebrew-coregit checkout 9ba3d6ef8891e5c15dbdc9333f857b13711d4e97 Formula/qt@5.5.rbbrew install qt@5.5echo 'export PATH="$(brew --prefix qt@5.5)/bin:$PATH"' >> ~/.bashrc

Complete installation process is here