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 47{}
-
LOOKUP =
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 48{}
-
SET =
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 46Mimes.new
Class Method Summary
- .[](type)
- .fetch(type, &block)
- .symbols
- .valid_symbols?(symbols) ⇒ Boolean Internal use only
Class Method Details
.[](type)
[ GitHub ]# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 51
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 64
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 56
def symbols SET.symbols end
.valid_symbols?(symbols) ⇒ Boolean
This method is for internal use only.