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_to negotiation internals.

AllType.instance

Class Method Summary collapse

Class Method Details

.[](type) ⇒ Object



41
42
43
44
# File 'lib/action_dispatch/http/mime_type.rb', line 41

def [](type)
  return type if type.is_a?(Type)
  Type.lookup_by_extension(type)
end

.fetch(type) ⇒ Object



46
47
48
49
# File 'lib/action_dispatch/http/mime_type.rb', line 46

def fetch(type)
  return type if type.is_a?(Type)
  EXTENSION_LOOKUP.fetch(type.to_s) { |k| yield k }
end