# Author:: Marco Tessari . # Copyright:: Copyright (c) 2004, 2005 Uttk team. All rights reserved. # License:: LGPL # $Id: /w/fey/uttk/trunk/lib/uttk/strategies/Clean.rb 8778 2005-09-26T04:34:48.103938Z ertai $ module Uttk module Strategies class Clean < Strategy include Concrete def run_impl if @dir.is_a? Array @dir.each { |dir| FileUtils.rm_rf(dir) } else FileUtils.rm_rf(@dir) end pass end attribute :dir, 'clean directory', :mandatory end # class Clean end # module Strategies end # module Uttk