Class: Mime::Type::AcceptItem
- Inherits:
-
Object
- Object
- Mime::Type::AcceptItem
- Defined in:
- actionpack/lib/action_dispatch/http/mime_type.rb
Overview
A simple helper class used in parsing the accept header
Instance Attribute Summary (collapse)
-
- (Object) name
:nodoc:.
-
- (Object) order
:nodoc:.
-
- (Object) q
:nodoc:.
Instance Method Summary (collapse)
- - (Object) <=>(item)
- - (Object) ==(item)
-
- (AcceptItem) initialize(order, name, q = nil)
constructor
A new instance of AcceptItem.
- - (Object) to_s
Constructor Details
- (AcceptItem) initialize(order, name, q = nil)
A new instance of AcceptItem
60 61 62 63 64 65 |
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 60 def initialize(order, name, q=nil) @order = order @name = name.strip q ||= 0.0 if @name == Mime::ALL # default wildcard match to end of list @q = ((q || 1.0).to_f * 100).to_i end |
Instance Attribute Details
- (Object) name
:nodoc:
58 59 60 |
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 58 def name @name end |
- (Object) order
:nodoc:
58 59 60 |
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 58 def order @order end |
- (Object) q
:nodoc:
58 59 60 |
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 58 def q @q end |
Instance Method Details
- (Object) <=>(item)
71 72 73 74 75 |
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 71 def <=>(item) result = item.q <=> q result = order <=> item.order if result == 0 result end |
- (Object) ==(item)
77 78 79 |
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 77 def ==(item) name == (item.respond_to?(:name) ? item.name : item) end |
- (Object) to_s
67 68 69 |
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 67 def to_s @name end |