Module: Mime
- Defined in:
- actionpack/lib/action_dispatch/http/mime_type.rb
Defined Under Namespace
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
.[](type) ⇒ Object
27 28 29 30 |
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 27 def self.[](type) return type if type.is_a?(Type) Type.lookup_by_extension(type.to_s) end |