I am new to ruby, but while trying to install capybara to run test on my system I get the following error. Im running OSX

my_app$ gem install capybara-webkit
Building native extensions.  This could take a while...
ERROR:  Error installing capybara-webkit:
ERROR: Failed to build gem native extension.

/Users/joe/.rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb

Gem files will remain installed in /Users/joe/.rvm/gems/ruby-1.9.2-p290/gems/capybara-webkit-0.7.2 for inspection.
Results logged to /Users/joe/.rvm/gems/ruby-1.9.2-p290/gems/capybara-webkit-0.7.2/./gem_make.out

here are results from gem_make.out

/Users/joe/.rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb
link|improve this question

3  
Can you show what gem_make.out file says? I had a problem with installing capybara-webkit recently and what helped me was reinstalling libqt4-dev package on Ubuntu. Not sure what is equivalent on OSX, but may be you miss some qt dependencies too. – KL-7 Dec 3 '11 at 8:09
1  
Have you installed Qt? – Marc-André Lafortune Dec 3 '11 at 8:16
1  
I am new to rails. I do not know what Qt is, I am looking for it now to install. thanks Marc – eiu165 Dec 3 '11 at 13:47
feedback

2 Answers

up vote 15 down vote accepted

Try installing Qt for OS X first. It's the 3rd link on this page.

link|improve this answer
6  
works if you install qt. I ran 'brew install qt' – eiu165 Dec 4 '11 at 1:22
I'm still getting this same error after installing Qt. Qt itself seems to work fine, I can run the Qt Creator just fine. – Francois Jan 12 at 20:55
@Francois - please post a separate question with your specific error messages, and reference this question as "not a solution for you" (in addition to your machine-specific details and why it's not working for you) so the community can properly address it. – normalocity Jan 13 at 0:07
Did not work for me. qt was already installed. – Michael Durrant Feb 20 at 19:17
@MichaelDurrant Post a separate question with your specific error messages, and reference this question as "not a solution" for you. – normalocity Feb 20 at 20:26
feedback

Was having exactly this problem trying to install capybara-webdriver on CentOS 6 after installing QT.

Fixed the problem by adding the following to my PATH environment variable

/usr/lib64/qt4/bin/
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.