Module: Mime
| Relationships & Source Files | |
| Namespace Children | |
| 
       Classes: 
      
     | |
| Defined in: | actionpack/lib/action_dispatch/http/mime_type.rb | 
Constant Summary
- 
    ALL =
    # File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 320
ALLisn’t a real MIME type, so we don’t register it for lookup with the other concrete types. It’s a wildcard match that we use forrespond_tonegotiation internals.AllType.instance
 - 
    EXTENSION_LOOKUP =
    
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 36{} - 
    LOOKUP =
    
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 37{} - 
    SET =
    
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 35Mimes.new
 
Class Method Summary
Class Method Details
.[](type)
[ GitHub ]# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 40
def [](type) return type if type.is_a?(Type) Type.lookup_by_extension(type) end
.fetch(type)
[ GitHub ]# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 45
def fetch(type) return type if type.is_a?(Type) EXTENSION_LOOKUP.fetch(type.to_s) { |k| yield k } end