Class: Browser::Platform::Unknown

Inherits:
Base
  • Object
show all
Defined in:
lib/browser/platform/unknown.rb

Instance Attribute Summary

Attributes inherited from Base

#platform, #ua

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Browser::Platform::Base

Instance Method Details

#idObject



14
15
16
# File 'lib/browser/platform/unknown.rb', line 14

def id
  :unknown_platform
end

#match?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/browser/platform/unknown.rb', line 18

def match?
  true
end

#nameObject



10
11
12
# File 'lib/browser/platform/unknown.rb', line 10

def name
  "Unknown"
end

#versionObject



6
7
8
# File 'lib/browser/platform/unknown.rb', line 6

def version
  "0"
end