]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blobdiff - src/websites/efukt.rb
Fixed a typo in the Efukt class.
[dead/whatever-dl.git] / src / websites / efukt.rb
index f4cc58d663b236af75cf8072c0025dbb58259714..27d20992927dc57cba00b3846611a677e7dedab5 100644 (file)
@@ -43,7 +43,7 @@ class Efukt < Website
     
     # Most of the URLs will just be the video's id,
     # followed by an underscore and the video title (with
-    # all spaces replaced by underscores. Sounds look a good
+    # all spaces replaced by underscores. Sounds like a good
     # filename to me.
     filename_regex = /\/([[:alnum:]_]+)\.html/
     matches = filename_regex.match(@url)
@@ -71,15 +71,4 @@ class Efukt < Website
   end
 
 
-  # Just make a normal HTTP "get" request.
-  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