Last active
February 16, 2016 14:39
-
-
Save clemlatz/492ccf106241108cc8e9 to your computer and use it in GitHub Desktop.
Installing capybara-webkit on Debian wheezy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add capybara-webkit to Gemfile in :test group | |
# https://github.com/thoughtbot/capybara-webkit#usage | |
bundle install | |
# If bundle install fails, manual install | |
sudo apt-get update | |
sudo apt-get upgrade | |
# Install liborc (version required by Qt) | |
# http://forums.debian.net/viewtopic.php?f=6&t=117769 | |
sudo apt-get install liborc-0.4-0=1:0.4.19-1~bpo70+1 | |
# Install Qt (required by capybara-webkit) | |
# https://github.com/thoughtbot/capybara-webkit/wiki/Installing-Qt-and-compiling-capybara-webkit#debian-testing-unstable-stable-wheezy-ubuntu | |
sudo apt-get install qt5-default libqt5webkit5-dev gstreamer1.0-plugins-base gstreamer1.0-tools gstreamer1.0-x | |
# Install capybara-webkit | |
# https://github.com/thoughtbot/capybara-webkit | |
gem install capybara-webkit -v '1.8.0' | |
# Optional: install xvfb & the headless gem to run capybara-webkit on a Debian install without GUI | |
# Solves "QXcbConnection: Could not connect to display" | |
# http://blog.joshsoftware.com/2014/01/15/protip-capybara-rspec-integration-continuous-integration/ | |
sudo apt-get install xvfb | |
gem install headless |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment