module EzDownload

Constants

VERSION

Public Class Methods

open(url) click to toggle source
# File lib/ez_download.rb, line 4
def self.open(url)
  file = Net::HTTP.get_response(URI.parse(url))
  StringIO.new(file.body)
end