file for ex12

This commit is contained in:
Dan Buch 2012-02-19 13:56:34 -05:00
parent 70bcc49e7e
commit e1cf5f8292

10
ex12.rb Normal file
View File

@ -0,0 +1,10 @@
require 'open-uri'
open("http://www.ruby-lang.org/en") do |f|
f.each_line {|line| p line}
puts f.base_uri # <URI::HTTP:0x40e6ef2 URL:http://www.ruby-lang.org/en/>
puts f.content_type # "text/html"
puts f.charset # "iso-8859-1"
puts f.content_encoding # []
puts f.last_modified # Thu Dec 05 02:45:02 UTC 2002
end