Module: Mime
Relationships & Source Files | |
Namespace Children | |
Classes:
| |
Defined in: | actionpack/lib/action_dispatch/http/mime_type.rb |
Constant Summary
-
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 forrespond_to
negotiation internals.AllType.instance
-
EXTENSION_LOOKUP =
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 45{}
-
LOOKUP =
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 46{}
-
SET =
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 44Mimes.new
Class Method Summary
Class Method Details
.[](type)
[ GitHub ]# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 49
def [](type) return type if type.is_a?(Type) Type.lookup_by_extension(type) end
.fetch(type, &block)
[ GitHub ]# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 62
def fetch(type, &block) return type if type.is_a?(Type) EXTENSION_LOOKUP.fetch(type.to_s, &block) end
.symbols
[ GitHub ]# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 54
def symbols SET.symbols end