]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blobdiff - src/websites/veoh.rb
Factored out the Youtube implementation of get_page_data into the Website superclass.
[dead/whatever-dl.git] / src / websites / veoh.rb
index c961d688e213b9500db2ab20726e966b2d896894..8978febf855ec4bfd38abf6ab50840020f1559b4 100644 (file)
@@ -77,14 +77,4 @@ class Veoh < Website
   end
   
   
-  def get_page_data(url)
-    uri = URI.parse(url)
-
-    response = Net::HTTP.start(uri.host, uri.port) do |http|
-      http.get(uri.path)
-    end
-    
-    return response.body
-  end
-  
 end