Sha256: 0c3d0b127f2a7279127ebe8a88c133509f70cfc2d1a57030aec33357c0378c7b
Contents?: true
Size: 944 Bytes
Versions: 1
Compression:
Stored size: 944 Bytes
Contents
require 'active_support/core_ext/array/extract_options' module EasyDownloader class Options attr_accessor :files, :successful, :result, :load_count, :type, :host, :user, :password, :local_path, :remote_path, :local_pattern, :remote_pattern, :local_file, :remote_file def initialize(*options) @files = [] @successful = false @result = Result.new @load_count = 0 @options = options options.extract_options!.each do |key, value| send("#{key}=".to_sym, value) if respond_to?("#{key}=".to_sym) end end def type @type.to_sym end def remote_path to_dir_path(@remote_path) end def local_path to_dir_path(@local_path) end def to_dir_path(path) if path path =~ /\/$/ ? path : path + '/' else '' end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
easy_downloader-0.0.3.alpha | lib/easy_downloader/options.rb |