class Capybara::Poltergeist::PhantomJSTooOld

Public Class Methods

===(other) click to toggle source
Calls superclass method
# File lib/capybara/poltergeist/errors.rb, line 158
def self.===(other)
  if Cliver::Dependency::VersionMismatch === other
    warn "#{name} exception has been deprecated in favor of using the " +
         "cliver gem for command-line dependency detection. Please " +
         "handle Cliver::Dependency::VersionMismatch instead."
    true
  else
    super
  end
end