Class: MIME::Types

Inherits:
Object
  • Object
show all
Defined in:
lib/restclient/request.rb

Class Method Summary (collapse)

Instance Method Summary (collapse)

Class Method Details

+ (Object) type_for_extension(ext)



315
316
317
# File 'lib/restclient/request.rb', line 315

def type_for_extension ext
  @__types__.type_for_extension ext
end

Instance Method Details

- (Object) type_for_extension(ext)

Return the first found content-type for a value considered as an extension or the value itself



309
310
311
312
# File 'lib/restclient/request.rb', line 309

def type_for_extension ext
  candidates = @extension_index[ext]
  candidates.empty? ? ext : candidates[0].content_type
end