Class: Mime::NullType
  
  
  
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  Methods included from Singleton
  #duplicable?
  Dynamic Method Handling
  
    This class handles dynamic methods through the method_missing method
    
  
  
    
  
  
    #method_missing(method)  ⇒ Object  
  
  
  
  
    
      
383
384
385 
     | 
    
      # File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 383
def method_missing(method, ...)
  false if method.end_with?("?")
end
     | 
  
 
  
 
  
    Instance Method Details
    
      
  
  
    #nil?  ⇒ Boolean 
  
  
  
  
    
      
368
369
370 
     | 
    
      # File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 368
def nil?
  true
end 
     | 
  
 
    
      
  
  
    
      
376 
     | 
    
      # File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 376
def ref; end 
     | 
  
 
    
      
  
  
    
      
372
373
374 
     | 
    
      # File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 372
def to_s
  ""
end 
     |