Skip to Content Skip to Search
Namespace
Methods
#
E
F
S

Constants

ALL = AllType.instance
 

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.

Class Public methods

[](type)

# File actionpack/lib/action_dispatch/http/mime_type.rb, line 71
def [](type)
  return type if type.is_a?(Type)
  Type.lookup_by_extension(type)
end

extensions()

# File actionpack/lib/action_dispatch/http/mime_type.rb, line 80
def extensions
  @lookup_by_extension.keys
end

fetch(type, &block)

# File actionpack/lib/action_dispatch/http/mime_type.rb, line 88
def fetch(type, &block)
  return type if type.is_a?(Type)
  @lookup_by_extension.fetch(type.to_s, &block)
end

symbols()

# File actionpack/lib/action_dispatch/http/mime_type.rb, line 76
def symbols
  @registry.symbols
end