rails / 7.0.0 / mime.html /

module Mime

Constants

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.

EXTENSION_LOOKUP
LOOKUP
SET

Public Class Methods

[] (type) Show source
# File actionpack/lib/action_dispatch/http/mime_type.rb, line 40
def [](type)
  return type if type.is_a?(Type)
  Type.lookup_by_extension(type)
end
fetch (type, &block) Show source
# File actionpack/lib/action_dispatch/http/mime_type.rb, line 45
def fetch(type, &block)
  return type if type.is_a?(Type)
  EXTENSION_LOOKUP.fetch(type.to_s, &block)
end

© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.