class Browser::Sputnik

Public Instance Methods

full_version() click to toggle source
# File lib/browser/sputnik.rb, line 13
def full_version
  ua[%r{SputnikBrowser/([\d.]+)}, 1] || "0.0"
end
id() click to toggle source
# File lib/browser/sputnik.rb, line 5
def id
  :sputnik
end
match?() click to toggle source
# File lib/browser/sputnik.rb, line 17
def match?
  ua.include?("SputnikBrowser")
end
name() click to toggle source
# File lib/browser/sputnik.rb, line 9
def name
  "Sputnik"
end