Ruby 1.8.7 リファレンスマニュアル > ライブラリ一覧 > open-uriライブラリ > OpenURI::Metaモジュール > content_type
content_type -> String
[permalink][rdoc]対象となるリソースの Content-Type を文字列の配列で返します。Content-Type ヘッダの情報が使われます。 Content-Type ヘッダがない場合は、"application/octet-stream" を返します。
例:
require 'open-uri' p open('http://www.ruby-lang.org/').content_type #=> "text/html"