Installazione della gemma di rubino capybara-webkit


8

Ho i seguenti errori quando provo ad installare capybara-webkit ruby ​​gem

Gem :: Installer :: ExtensionBuildError: ERROR: impossibile creare l'estensione nativa gem.

    /home/s/.rvm/rubies/ruby-1.8.7-p371/bin/ruby extconf.rb 
    cd src/ && /usr/lib/x86_64-linux-gnu/qt4/bin/qmake /home/s/.rvm/gems/ruby-1.8.7- 
    p371@/gems/capybara-webkit-0.14.1/src/webkit_server.pro -spec 
   /usr/share/qt4/mkspecs/linux-g++ -o Makefile.webkit_server
   cd src/ && make -f Makefile.webkit_server 
   make[1]: Entering directory `/home/s/.rvm/gems/ruby-1.8.7-p371@/gems/capybara-     webkit-0.14.1/src'

   g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_WEBKIT_LIB -DQT_GUI_LIB - DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. - I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui - I/usr/include/qt4/QtWebKit -I/usr/include/qt4 -I. -o EnableLogging.o EnableLogging.cpp
   g++ -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_WEBKIT_LIB -DQT_GUI_LIB -  DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. - I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui - I/usr/include/qt4/QtWebKit -I/usr/include/qt4 -I. -o Authenticate.o Authenticate.cpp
 In file included from Authenticate.cpp:2:0:
 WebPage.h:46:17: error: incomplete type ‘QNetworkReply’ used in nested name specifier   
 WebPage.h:46:17: error: incomplete type ‘QNetworkReply’ used in nested name specifier
 WebPage.h:46:45: error: template argument 1 is invalid
 make[1]: *** [Authenticate.o] Error 1
 make[1]: Leaving directory `/home/s/.rvm/gems/ruby-1.8.7-p371/gems/capybara-  webkit-0.14.1/src'
 make: *** [sub-src-webkit_server-pro-make_default-ordered] Error 2
 Command 'make' failed

Uso Ubuntu 13.04 e ho installato libqt4-dev e g ++. Qualcuno sa come aggiustarlo? L'ho installato correttamente su Ubuntu 12.10.

Risposte:


3

Sembra essere un problema popolare ... https://github.com/thoughtbot/capybara-webkit/issues/513

Ho avuto questo problema da solo e ho combattuto per circa una settimana. Sembra funzionare ora però! Il problema è che non posso restringerlo a ciò che ho fatto. Ecco un elenco di cose che potrebbero aver contribuito a risolverlo:

Installa i pacchetti mancanti:

sudo apt-get install libqt4-dev libqtwebkit-dev build-essential

Se i pacchetti esistono già, eliminare e quindi installare

sudo apt-get purge libqt4-dev libqtwebkit-dev 

Reinstallare ruby

rvm reinstall 1.9.3

sudo apt-get update && sudo apt-get upgrade

Penso che reinstallare RVM sia stato quello che ha fatto per me. Nel tempo si era ingombra di tutti i diversi progetti di binari e hack personali.


Splendida! L'eliminazione l'ha Gemfile.lockrisolto per me. Ricreare il gemset non ha fatto nulla, né reinstallare i pacchetti Qt.
Giona il

C'è una pagina wiki ufficiale per questo ora github.com/thoughtbot/capybara-webkit/wiki/…
HarlemSquirrel
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.