]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/commitdiff
Whitespace cleanup. master
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 9 Dec 2013 16:23:48 +0000 (11:23 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 9 Dec 2013 16:23:48 +0000 (11:23 -0500)
lib/whatever-dl/downloader.rb
lib/whatever-dl/open_uri_downloader.rb
lib/whatever-dl/wget_downloader.rb

index c62ebf9361a63505fd886322dca8f0633f6cedf5..c21cccd8c448414d1e0ce4250ff2b3f78a790191 100644 (file)
@@ -28,12 +28,12 @@ class Downloader
     end
   end
 
-  
+
   # Abstract
   def download(url, outfile, headers = {}, continue = false)
     raise NotImplementedError
   end
-  
+
 end
 
 
index 05e6fe7c060776d2f7e5ad7c0d3e5b1264e144f7..a3a0c357154b92bf4ac1fb07f758215873c6c1e7 100644 (file)
@@ -26,12 +26,12 @@ class OpenUriDownloader < Downloader
     end
 
     uri = URI.parse(url)
-    
+
     uu = UriUtilities.new()
     puts "Fetching #{url}"
     puts "Saving as #{outfile}."
     puts ''
     uu.download_with_progress_bar(uri, outfile, headers)
   end
-  
+
 end
index 82235d594bd34408d5cb464dcb88eefd6e0618a4..c393d1d46a2e633b8d1131552a6729682ceb47ac 100644 (file)
@@ -38,5 +38,5 @@ class WgetDownloader < Downloader
     puts "\nExecuting external command: #{cmd}\n\n"
     Kernel.exec(cmd)
   end
-  
+
 end