module FileDownloader

Constants

VERSION

Public Class Methods

download(url:, filepath:) click to toggle source
# File lib/file_downloader.rb, line 5
def self.download(url:, filepath:)
  Service.new(url, filepath).execute
end