module Reap class RunModes attr_accessor :dryrun attr_accessor :verbose attr_accessor :trace attr_accessor :force attr_accessor :debug def initialize(options, &block) populate(options, &block) end def dryrun? ; @dryrun ; end def verbose? ; @verbose ; end def trace? ; @trace ; end def force? ; @force ; end def debug? ; @debug ; end end end