class UserAgent::Browsers::Gecko

def platform

def platform
  if comment = application.comment
    if comment[0] == 'compatible' || comment[0] == 'Mobile'
      nil
    elsif /^Windows / =~ comment[0]
      'Windows'
    else
      comment[0]
    end
  end
end