class Browser::GoogleSearchApp
Public Instance Methods
full_version()
click to toggle source
Calls superclass method
Browser::Chrome#full_version
# File lib/browser/google_search_app.rb, line 13 def full_version ua[%r{GSA/([\d.]+\d)}, 1] || super end
id()
click to toggle source
# File lib/browser/google_search_app.rb, line 5 def id :google_search_app end
match?()
click to toggle source
# File lib/browser/google_search_app.rb, line 17 def match? ua.include?("GSA") end
name()
click to toggle source
# File lib/browser/google_search_app.rb, line 9 def name "Google Search App" end