class Mime::NullType

Public Instance Methods

nil?() click to toggle source
# File lib/action_dispatch/http/mime_type.rb, line 340
def nil?
  true
end
ref() click to toggle source
# File lib/action_dispatch/http/mime_type.rb, line 348
def ref; end
to_s() click to toggle source
# File lib/action_dispatch/http/mime_type.rb, line 344
def to_s
  ""
end

Private Instance Methods

method_missing(method, *args) click to toggle source
# File lib/action_dispatch/http/mime_type.rb, line 355
def method_missing(method, *args)
  false if method.end_with?("?")
end
respond_to_missing?(method, _) click to toggle source
# File lib/action_dispatch/http/mime_type.rb, line 351
def respond_to_missing?(method, _)
  method.end_with?("?")
end