Class: Xenon::CharsetRange

Inherits:
Object
  • Object
show all
Defined in:
lib/xenon/headers/accept_charset.rb

Constant Summary collapse

DEFAULT_Q =
1.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(charset, q = DEFAULT_Q) ⇒ CharsetRange

Returns a new instance of CharsetRange.



10
11
12
13
# File 'lib/xenon/headers/accept_charset.rb', line 10

def initialize(charset, q = DEFAULT_Q)
  @charset = charset
  @q = Float(q) || DEFAULT_Q
end

Instance Attribute Details

#charsetObject (readonly)

Returns the value of attribute charset.



6
7
8
# File 'lib/xenon/headers/accept_charset.rb', line 6

def charset
  @charset
end

#qObject (readonly)

Returns the value of attribute q.



6
7
8
# File 'lib/xenon/headers/accept_charset.rb', line 6

def q
  @q
end

Instance Method Details

#<=>(other) ⇒ Object



15
16
17
# File 'lib/xenon/headers/accept_charset.rb', line 15

def <=>(other)
  @q <=> other.q
end

#to_sObject



19
20
21
22
23
# File 'lib/xenon/headers/accept_charset.rb', line 19

def to_s
  s = @charset.dup
  s << "; q=#{@q}" if @q != DEFAULT_Q
  s
end