]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blobdiff - src/websites/vimeo.rb
Factored out the Youtube implementation of get_page_data into the Website superclass.
[dead/whatever-dl.git] / src / websites / vimeo.rb
index 56243fad3ecd5d0616db0d5fdd5aa605bf01d2b2..b3dfe74c16f2630df10ac4c8ea07d0ae2e7ada0d 100644 (file)
@@ -119,14 +119,4 @@ class Vimeo < 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