Module: Mime
- Defined in:
- actionpack/lib/action_dispatch/http/mime_type.rb
Defined Under Namespace
Classes: Mimes, NullType, Type
Constant Summary
collapse
- SET =
Mimes.new
- EXTENSION_LOOKUP =
{}
- LOOKUP =
Hash.new { |h, k| h[k] = Type.new(k) unless k.blank? }
Class Method Summary
collapse
Class Method Details
.fetch(type) ⇒ Object
33
34
35
36
|
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 33
def fetch(type)
return type if type.is_a?(Type)
EXTENSION_LOOKUP.fetch(type.to_s) { |k| yield k }
end
|