class Browser::Platform::IOS

def device

def device
  ua[MATCHER, 1]
end

def id

def id
  :ios
end

def match?

def match?
  ua =~ MATCHER
end

def name

def name
  "iOS (#{device})"
end

def version

def version
  ua[VERSION_MATCHER, 1] || "0"
end