Class: MIME::Types
- Inherits:
-
Object
- Object
- MIME::Types
- Defined in:
- lib/restclient/request.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#type_for_extension(ext) ⇒ Object
Return the first found content-type for a value considered as an extension or the value itself.
Class Method Details
.type_for_extension(ext) ⇒ Object
271 272 273 |
# File 'lib/restclient/request.rb', line 271 def type_for_extension ext @__types__.type_for_extension ext end |
Instance Method Details
#type_for_extension(ext) ⇒ Object
Return the first found content-type for a value considered as an extension or the value itself
265 266 267 268 |
# File 'lib/restclient/request.rb', line 265 def type_for_extension ext candidates = @extension_index[ext] candidates.empty? ? ext : candidates[0].content_type end |