Module: Mime
- Defined in:
 - lib/action_dispatch/http/mime_type.rb
 
Defined Under Namespace
Classes: AllType, Mimes, NullType, Type
Constant Summary collapse
- SET =
 Mimes.new
- EXTENSION_LOOKUP =
 {}
- LOOKUP =
 {}
- ALL =
          
ALL isn’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 for
respond_tonegotiation internals. AllType.instance
Class Method Summary collapse
- .[](type) ⇒ Object
 - .fetch(type, &block) ⇒ Object
 - .symbols ⇒ Object
 - 
  
    
      .valid_symbols?(symbols)  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  
  
    
:nodoc:.
 
Class Method Details
.[](type) ⇒ Object
      49 50 51 52  | 
    
      # File 'lib/action_dispatch/http/mime_type.rb', line 49 def [](type) return type if type.is_a?(Type) Type.lookup_by_extension(type) end  | 
  
.fetch(type, &block) ⇒ Object
      62 63 64 65  | 
    
      # File 'lib/action_dispatch/http/mime_type.rb', line 62 def fetch(type, &block) return type if type.is_a?(Type) EXTENSION_LOOKUP.fetch(type.to_s, &block) end  | 
  
.symbols ⇒ Object
      54 55 56  | 
    
      # File 'lib/action_dispatch/http/mime_type.rb', line 54 def symbols SET.symbols end  | 
  
.valid_symbols?(symbols) ⇒ Boolean
:nodoc:
      58 59 60  | 
    
      # File 'lib/action_dispatch/http/mime_type.rb', line 58 def valid_symbols?(symbols) # :nodoc: SET.valid_symbols?(symbols) end  |