Class: Browser::Safari

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

Instance Attribute Summary

Attributes inherited from Base

#accept_language, #ua

Instance Method Summary collapse

Methods inherited from Base

#bot, #bot?, #chrome?, #compatibility_view?, #core_media?, #device, #edge?, #firefox?, #ie?, #initialize, #known?, #meta, #micro_messenger?, #modern?, #msie_full_version, #msie_version, #nokia?, #opera?, #opera_mini?, #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



12
13
14
15
16
17
# File 'lib/browser/safari.rb', line 12

def full_version
  ua[%r[Version/([\d.]+)], 1] ||
    ua[%r[Safari/([\d.]+)], 1] ||
    ua[%r[AppleWebKit/([\d.]+)], 1] ||
    "0.0"
end

#idObject



4
5
6
# File 'lib/browser/safari.rb', line 4

def id
  :safari
end

#match?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/browser/safari.rb', line 19

def match?
  ua =~ /Safari/ && ua !~ /Chrome|CriOS|PhantomJS|FxiOS/
end

#nameObject



8
9
10
# File 'lib/browser/safari.rb', line 8

def name
  "Safari"
end