class Browser::SougouBrowser

def full_version

We can't get the real version on desktop device from the ua string
def full_version
  ua[%r{(?:SogouMobileBrowser)/([\d.]+)}, 1] || "0.0"
end

def id

def id
  :sougou_browser
end

def match?

SE for desktop device
SogouMobileBrowser for mobile device
def match?
  ua =~ /SogouMobileBrowser/i || ua =~ / SE /
end

def name

def name
  "Sougou Browser"
end