Install Capybara-webkit Gem For Mac
Hello, I'm trying to install the compressor script fort Blueprint CSS Launching the 'bundle install' command all is fine except when it comes to install capybara-webkit, I get this error: Installing capybara-webkit (0.3.0) with native extensions C:/Ruby192/lib/ruby/siteruby/1.9.1/rubygems/installer.rb:529:in `rescue in block in buildextensions': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError) C:/Ruby192/bin/ruby.exe extconf.rb Gem files will remain installed in C:/Ruby192/lib/ruby/gems/1.9.1/gems/capybara-webkit-0.3.0 for inspection. Results logged to C:/Ruby192/lib/ruby/gems/1.9.1/gems/capybara-webkit-0.3.0/./gemmake.out Select all followed by lot of lines like: from C:/Ruby192/lib/ruby/siteruby/1.9.1/rubygems/installer.rb:507:in `block in buildextensions' from C:/Ruby192/lib/ruby/siteruby/1.9.1/rubygems/installer.rb:482:in `each' Select all The error happens also if I try to install capybara-webkit directly: gem install capybara-webkit (return) Temporarily enhancing PATH to include DevKit.

Building native extensions. This could take a while. ERROR: Error installing capybara-webkit: ERROR: Failed to build gem native extension.
C:/Ruby192/bin/ruby.exe extconf.rb Gem files will remain installed in C:/Ruby192/lib/ruby/gems/1.9.1/gems/capybara-webkit-0.4.1 for inspection. Results logged to C:/Ruby192/lib/ruby/gems/1.9.1/gems/capybara-webkit-0.4.1/./gemmake.out Select all Any idea, please?
What does it say in this file: C:/Ruby192/lib/ruby/gems/1.9.1/gems/ capybara-w ebkit-0.4. 1/./gemma ke.out There will be detailed error messages there. What it's telling you is that it couldn't build the native (usually C) extensions. That could be because windows doesn't have a native 'make' command. At least that's what I've seen on my windows box. If that's the case, you should be able to install a windows make from: there are other places to find a windows make command as well; google search is your friend here. OK; download this file: Open it (later versions of Windows will open it automatically).
Copy the program make.exe into a directory that is in your path so that it is automatically found. (If you don't know about 'path', then do this: 1. Run cmd.exe; usually on your start menu) 2. Type 'echo%PATH%' (no quotes; see example) 3.
Pick the location where you want to put the make.exe ) Then try bundle again Hope this helps. C: Users carolecho%PATH% C: Windows system32;C: Windows;C: Windows system32 wbem;l: bin;c: user bin;C: Program Files Common Files Roxio Shared DLLShared;C: Program Files Common Files Roxio Shared 9.0 DLLShared;C: Program Files SizeExplorer Pro 4;C: Windows System32 WindowsPowerShell v1.0;C: Program Files QuickTime QTSystem;c:/Dev/InstantRails/ruby/bin Select all.

Install Capybara-webkit Gem For Mac Mac
I’ve been a happy user of for many years now, but its dependence on can make it frustrating to install on macOS, particularly following macOS or Xcode updates. One such recent issue lead me to experiment with running my tests in Chrome via and Selenium. I found the installation of ChromeDriver and Capybara-Selenium to be significantly faster than the installation of Qt and Capybara-WebKit, and my teammates reported no difficulties with those steps either. While tests executing with Capybara-WebKit are headless, I initially did not have this option when configuring ChromeDriver. In this initial configuration, I was reminded that it is occasionally useful to watch a test execute without having to resort to saveandopenscreenshot. I was also pleasantly surprised to find that ChromeDriver never seems to steal focus from my active Chrome session or any other applications, which is a refreshing change from my memories of executing tests in Firefox via Selenium.
Last week saw the stable channel release of Chrome 59, which supports headless operation on macOS. Headless operation on Linux was already possible as of Chrome 57 and will be coming to Windows soon as well. I updated my Capybara configuration to run ChromeDriver with headless support and am now a mostly satisfied ChromeDriver convert. Executing your feature specs in Chrome requires that you have Chrome and ChromeDriver installed. Web developers and designers are likely to have Chrome installed already, so that leaves us needing to install ChromeDriver. ChromeDriver is installed via Homebrew with brew install chromedriver and is similarly available in your package manager of choice on Linux.
If you already have ChromeDriver installed, be sure to install an up-to-date version for headless support. I’m currently using ChromeDriver version 2.30.
If you’re not comfortable making this a prerequisite to running your application’s tests, you can also install ChromeDriver by adding to your Gemfile. On install this will download a platform-appropriate binary for ChromeDriver and add it to your gem path. If you opt for this approach, be sure to read the and the open issue on Windows support. Add capybara-selenium to the test group of your Gemfile and optionally remove capybara-webkit while you’re at it.
Install Capybara-webkit Gem For Mac Windows
All that’s left for us to do now is to configure our drivers. In your railshelper.rb or some file required by that file, add the following.