]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blobdiff - lib/whatever-dl/configuration.rb
Use strings instead of symbols for the downloader type.
[dead/whatever-dl.git] / lib / whatever-dl / configuration.rb
index 643479e771ff1fd5bc9ddc044b4f19207bee6857..9cca34a42b7c4bcb9178a3886cdfa569d0021426 100644 (file)
@@ -1,11 +1,11 @@
 require 'yaml'
 
-module Configuration
+class Configuration
   # Configurable Options
   #
-  # We support a couple of different download methods. The :openuri
+  # We support a couple of different download methods. The 'openuri'
   # method utilizes the ruby open-uri library, and provides its own
-  # progress bar with no external dependencies. The :wget method, on the
+  # progress bar with no external dependencies. The 'wget' method, on the
   # other hand, requires GNU Wget (http://www.gnu.org/software/wget/),
   # but will support auto-resume of partially-downloaded files for
   # example.