]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - lib/whatever-dl/configuration.rb
Move all of the 'src' code under the more-standard 'lib'.
[dead/whatever-dl.git] / lib / whatever-dl / configuration.rb
1 module Configuration
2 # Configurable Options
3
4 # We support a couple of different download methods. The :openuri
5 # method utilizes the ruby open-uri library, and provides its own
6 # progress bar with no external dependencies. The :wget method, on the
7 # other hand, requires GNU Wget (http://www.gnu.org/software/wget/),
8 # but will support auto-resume of partially-downloaded files for
9 # example.
10 DOWNLOAD_METHOD = :openuri
11 #DOWNLOAD_METHOD = :wget
12
13 USER_AGENT = 'whatever-dl'
14 end