Class: Browser::Chrome

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

Instance Attribute Summary

Attributes inherited from Base

#accept_language, #ua

Instance Method Summary collapse

Methods inherited from Base

#alipay?, #bot, #bot?, #chrome?, #compatibility_view?, #core_media?, #device, #edge?, #electron?, #facebook?, #firefox?, #ie?, #initialize, #known?, #meta, #micro_messenger?, #modern?, #msie_full_version, #msie_version, #nokia?, #opera?, #opera_mini?, #otter?, #phantom_js?, #platform, #proxy?, #quicktime?, #safari?, #safari_webapp_mode?, #to_s, #uc_browser?, #version, #webkit?, #webkit_full_version, #weibo?, #yandex?

Constructor Details

This class inherits a constructor from Browser::Base

Instance Method Details

#full_versionObject



13
14
15
16
17
18
19
20
# File 'lib/browser/chrome.rb', line 13

def full_version
  # Each regex on its own line to enforce precedence.
  ua[%r[Chrome/([\d.]+)], 1] ||
    ua[%r[CriOS/([\d.]+)], 1] ||
    ua[%r[Safari/([\d.]+)], 1] ||
    ua[%r[AppleWebKit/([\d.]+)], 1] ||
    "0.0"
end

#idObject



5
6
7
# File 'lib/browser/chrome.rb', line 5

def id
  :chrome
end

#match?Boolean

Returns:

  • (Boolean)


22
23
24
# File 'lib/browser/chrome.rb', line 22

def match?
  ua =~ /Chrome|CriOS/ && !opera? && !edge?
end

#nameObject



9
10
11
# File 'lib/browser/chrome.rb', line 9

def name
  "Chrome"
end