class Browser::PhantomJS

def full_version

def full_version
  ua[%r{PhantomJS/([\d.]+)}, 1] || "0.0"
end

def id

def id
  :phantom_js
end

def match?

def match?
  ua.include?("PhantomJS")
end

def name

def name
  "PhantomJS"
end