module
Mime
Methods
Constants
ALL |
= | AllType.instance |
|
||
EXTENSION_LOOKUP |
= | {} |
LOOKUP |
= | {} |
SET |
= | Mimes.new |
Public class methods
Source code 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
Source code 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
Source code GitHub
# File actionpack/lib/action_dispatch/http/mime_type.rb, line 54
def symbols
SET.symbols
end
Namespace
-
CLASS
Mime::
AllType -
CLASS
Mime::
Mimes -
CLASS
Mime::
NullType -
CLASS
Mime::
Type
Definition files