Module: Mime
Relationships & Source Files | |
Namespace Children | |
Classes:
| |
Defined in: | actionpack/lib/action_dispatch/http/mime_type.rb |
Constant Summary
-
ALL =
Create
ALL
but do not add it to the SET.Mime::Type.new("*/*", :all, [])
-
EXTENSION_LOOKUP =
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 25{}
-
LOOKUP =
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 26{}
-
SET =
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 24Mimes.new
Class Method Summary
Class Method Details
.[](type)
[ GitHub ]# File 'actionpack/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)
[ GitHub ]# File 'actionpack/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