RubyGemのCapybaraWebkitを使いたい
環境はOSXで、gemのcapybara-webkitを使いたいなーと思ったらなんか色々厄介だったのでめもっておく。 何が厄介かというと、インストールしようとするとこのエラーだった。
<br></br><br></br>$ gem install capybara-webkit
Building native extensions. This could take a while...
ERROR: Error installing capybara-webkit:
ERROR: Failed to build gem native extension.
current directory: /Users/osker/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/capybara-webkit-1.11.1
/Users/osker/.rbenv/versions/2.3.0/bin/ruby -r ./siteconf20161218-14896-ljhyry.rb extconf.rb
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/Users/osker/.rbenv/versions/2.3.0/bin/$(RUBY_BASE_NAME)
--with-gl-dir
--without-gl-dir
--with-gl-include
--without-gl-include=${gl-dir}/include
--with-gl-lib
--without-gl-lib=${gl-dir}/lib
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib
Command 'qmake ' not available
extconf failed, exit code 1
Gem files will remain installed in /Users/osker/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/capybara-webkit-1.11.1 for inspection.
Results logged to /Users/osker/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/extensions/x86_64-darwin-15/2.3.0-static/capybara-webkit-1.11.1/gem_make.out
この手のエラーがでるってことで検索すると、
$ brew install qt55
$ brew link qt55 --force
とかやればいい、みたいな記事を見た記憶があったのでその通りにしたが結局qmakeが使えないエラーは消えなかった。公式を見てみると、qtのインストールフォルダにある「default_pre.prf」というファイルを書き換えてやるといいらしかった。
$ vim /usr/local/Cellar/qt55/5.5.1/mkspecs/features/mac/default_pre.prf
15行目
isEmpty($$list($$system("/usr/bin/xcrun -find xcrun 2>/dev/null"))): \
に書き換え
これでインストールできるようになった。