Method: Ephem::Download#initialize
- Defined in:
- lib/ephem/download.rb
#initialize(name, target_path) ⇒ Download
Returns a new instance of Download.
99 100 101 102 103 |
# File 'lib/ephem/download.rb', line 99 def initialize(name, target_path) @name = name @target_path = Pathname.new(target_path) validate_requested_kernel! end |