Class: UserAgentParser::OperatingSystem

Inherits:
Object
  • Object
show all
Defined in:
lib/user_agent_parser/operating_system.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(family = 'Other', version = nil) ⇒ OperatingSystem

Returns a new instance of OperatingSystem.



7
8
9
10
# File 'lib/user_agent_parser/operating_system.rb', line 7

def initialize(family = 'Other', version = nil)
  @family = family
  @version = version
end

Instance Attribute Details

#familyObject (readonly) Also known as: name

Returns the value of attribute family.



3
4
5
# File 'lib/user_agent_parser/operating_system.rb', line 3

def family
  @family
end

#versionObject (readonly)

Returns the value of attribute version.



3
4
5
# File 'lib/user_agent_parser/operating_system.rb', line 3

def version
  @version
end

Instance Method Details

#eql?(other) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


24
25
26
27
28
# File 'lib/user_agent_parser/operating_system.rb', line 24

def eql?(other)
  self.class.eql?(other.class) &&
    family == other.family &&
    version == other.version
end

#inspectObject



20
21
22
# File 'lib/user_agent_parser/operating_system.rb', line 20

def inspect
  "#<#{self.class} #{to_s}>"
end

#to_sObject



12
13
14
15
16
17
18
# File 'lib/user_agent_parser/operating_system.rb', line 12

def to_s
  string = family
  unless version.nil?
    string += " #{version}"
  end
  string
end