Class: Browser::Platform::ChromeOS
- Inherits:
-
Base
- Object
- Base
- Browser::Platform::ChromeOS
show all
- Defined in:
- lib/browser/platform/chrome_os.rb
Instance Attribute Summary
Attributes inherited from Base
#platform, #ua
Instance Method Summary
collapse
Methods inherited from Base
#initialize
Instance Method Details
#id ⇒ Object
14
15
16
|
# File 'lib/browser/platform/chrome_os.rb', line 14
def id
:chrome_os
end
|
#match? ⇒ Boolean
6
7
8
|
# File 'lib/browser/platform/chrome_os.rb', line 6
def match?
ua.include?("CrOS")
end
|
#name ⇒ Object
10
11
12
|
# File 'lib/browser/platform/chrome_os.rb', line 10
def name
"Chrome OS"
end
|
#version ⇒ Object
18
19
20
|
# File 'lib/browser/platform/chrome_os.rb', line 18
def version
ua[/CrOS(?: x86_64)? ([\d.]+)/, 1]
end
|