require 'reap/reap' require 'reap/task' class Reap::CompositeTask < Reap::Task register "composite" #def default_name ; "" ; end def default_desc "run tasks #{subtasks.join(',')} [reap]" end #attr_accessor :subtasks def init #@subtasks = section['subtasks'] end private def run #@subtasks.each do |st| #end end end