Class: Mime::Type::AcceptItem

Inherits:
Object
  • Object
show all
Defined in:
lib/action_dispatch/http/mime_type.rb

Overview

A simple helper class used in parsing the accept header

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(index, name, q = nil) ⇒ AcceptItem

Returns a new instance of AcceptItem.



99
100
101
102
103
104
# File 'lib/action_dispatch/http/mime_type.rb', line 99

def initialize(index, name, q = nil)
  @index = index
  @name = name
  q ||= 0.0 if @name == '*/*'.freeze # default wildcard match to end of list
  @q = ((q || 1.0).to_f * 100).to_i
end

Instance Attribute Details

#indexObject

:nodoc:



96
97
98
# File 'lib/action_dispatch/http/mime_type.rb', line 96

def index
  @index
end

#nameObject Also known as: to_s

:nodoc:



96
97
98
# File 'lib/action_dispatch/http/mime_type.rb', line 96

def name
  @name
end

#qObject

:nodoc:



96
97
98
# File 'lib/action_dispatch/http/mime_type.rb', line 96

def q
  @q
end

Instance Method Details

#<=>(item) ⇒ Object



106
107
108
109
110
# File 'lib/action_dispatch/http/mime_type.rb', line 106

def <=>(item)
  result = item.q <=> @q
  result = @index <=> item.index if result == 0
  result
end