модуль Mime
Константы
- ALL
-
Создать Mime::ALL, но не добавлять его в SET.
- EXTENSION_LOOKUP
- LOOKUP
- SET
Публичные методы класса
# 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
# 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
© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.