module Mime
Constants
- ALL
Create Mime::ALL but do not add it to the SET.
- EXTENSION_LOOKUP
- LOOKUP
- SET
Public Class Methods
[](type)
click to toggle source
# File lib/action_dispatch/http/mime_type.rb, line 29 def [](type) return type if type.is_a?(Type) Type.lookup_by_extension(type) end
fetch(type) { |k| ... }
click to toggle source
# File lib/action_dispatch/http/mime_type.rb, line 34 def fetch(type) return type if type.is_a?(Type) EXTENSION_LOOKUP.fetch(type.to_s) { |k| yield k } end