class Browser::Platform::IOS

def version

def version
  matches = VERSION_MATCHER.match(ua)
  return "0" unless matches
  versions = [matches[:major]]
  if matches[:patch]
    versions.push(matches[:minor], matches[:patch])
  else
    versions.push(matches[:minor]) unless matches[:minor] == "0"
  end
  versions.join(".")
end