Releases: jilion/http_content_type
Releases · jilion/http_content_type
v0.0.3
v0.0.2
- Handle redirections & url with query params.
- Allow to pass options to
HttpContentType::Checker#initialize
. - New
:timeout
option to customize the read timeout for theHEAD
request that checks theContent-Type
header. - New
:expected_content_type
option to hardcode the expectedContent-Type
. - New
#error?
method to check if the request on the asset failed for any reason. - Default timeout is now 5 seconds (instead of 3).
- Documentation added for all public methods using Yard.
Author: @rymai
Initial release
This gem allows you to check if the Content-Type
returned for a given asset is valid regarding its extension.
Only videos (.mp4
/.m4v
/.mov
, .webm
, .ogg
/.ogv
) are supported for the moment.
For instance, given the URL http://domain.com/video.mp4
, the expected Content-Type
is video/mp4
.
Author: @rymai