I have a problem with installation of capybara-webkit gem. Here is part of my test group in gemfile:
group :test do
gem 'capybara-webkit'
end
And when I write 'bundle' on console - it gives me out
`"An error occurred while installing capybara-webkit (1.15.1), and Bundler cannot continue. Make sure that `gem install capybara-webkit -v '1.15.1' --source 'https://rubygems.org/'` succeeds before bundling."`
So I found out that I need to install qt via homebrew. So I go to homebrew-core, wrote 'brew update', than 'cd $( brew --prefix )/Homebrew/Library/Taps/homebrew/homebrew-core' ; 'git checkout 9ba3d6ef8891e5c15dbdc9333f857b13711d4e97 Formula/[email protected]' ; and 'brew install [email protected]'. And then it gives me out 'Error: [email protected]: unknown version :mountain_lion'. I found out that problem may in 'Formula/[email protected]' where it has string 'depends_on :macos => :mountain_lion'. So I commented it and then when I write 'brew install [email protected]' - it gives me out another error:
"Error: Failed to download resource "[email protected]_bottle_manifest""
What may be the problem?