module Browser::Platform

def linux?

Detect if current platform is Linux flavor.
def linux?
  !!(ua =~ /Linux/)
end