]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/commitdiff
Fix a few require paths.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 11 Jun 2012 01:34:47 +0000 (21:34 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 11 Jun 2012 01:34:47 +0000 (21:34 -0400)
lib/vendor/ruby-progressbar/progressbar.rb [moved from vendor/ruby-progressbar/progressbar.rb with 100% similarity]
lib/vendor/ruby-progressbar/test.rb [moved from vendor/ruby-progressbar/test.rb with 100% similarity]
lib/whatever-dl/downloader.rb
lib/whatever-dl/open_uri_downloader.rb

index b9921e8ead9a999412d2061098c473afc834ebfc..85cc4e32a9a9fcea87dc7f8b0be6534179feb9a9 100644 (file)
@@ -38,5 +38,5 @@ end
 
 
 # This is wacky, but seems to work.
-require 'src/wget_downloader'
-require 'src/open_uri_downloader'
+require 'whatever-dl/wget_downloader'
+require 'whatever-dl/open_uri_downloader'
index e55c0fa7d0e60635b29b1d27b2f843f27da2d873..05e6fe7c060776d2f7e5ad7c0d3e5b1264e144f7 100644 (file)
@@ -16,7 +16,7 @@
 # http://www.fsf.org/licensing/licenses/gpl.html
 #
 
-require 'src/uri_utilities'
+require 'whatever-dl/uri_utilities'
 
 class OpenUriDownloader < Downloader