Removed some redundant requires from the website subclasses.
# to parse the server name out of our URL.
require 'uri'
+# Needed to download.. things.
+require 'net/http'
+
# This class keeps track of all its subclasses
# We use this to loop through every "website" in an
# attempt to determine to which site a URL belongs.
require 'src/website'
-# Needed to download the page, which is in turn
-# needed because it contains the video (redirect) URL.
-require 'net/http'
-require 'uri'
-
class Veoh < Website
require 'src/website'
-# Needed to download the video XML file, which is in turn
-# needed because it contains the junk we need to construct
-# the video URL.
-require 'net/http'
-require 'uri'
-
class Vimeo < Website
require 'src/website'
-# Needed to download the page, which is in turn
-# needed because it contains the video URL.
-require 'net/http'
-
class Yikers < Website
require 'src/website'
-# Needed to download the page, which is in turn
-# needed because it contains the video URL.
-require 'net/http'
-require 'uri'
-
class Youporn < Website
require 'src/website'
-# Needed to download the page, which is in turn
-# needed because it contains the video URL.
-require 'net/http'
-require 'uri'
-
class Youtube < Website