class RubyInstaller::Build::Task
Public Class Methods
new(thisdir: , **hash)
click to toggle source
Calls superclass method
RubyInstaller::Build::Openstruct::new
# File lib/ruby_installer/build/task.rb, line 10 def initialize(thisdir: , **hash) super(hash) self.thisdir = thisdir ovl_glob(File.join(thisdir, "[0-9][0-9]-*.rake")).sort.each do |taskfile| eval_file(ovl_expand_file(taskfile)) end end