module EasyDownloader

Public Class Methods

download(*options) click to toggle source
# File lib/easy_downloader.rb, line 16
def self.download(*options)
  Downloader.new(*options).execute
end
upload(*options) click to toggle source
# File lib/easy_downloader.rb, line 20
def self.upload(*options)
  Uploader.new(*options).execute
end