require 'reap/task' # ___ __ _____ _ # |_ _|_ _ / _|___ |_ _|_ _ __| |__ # | || ' \| _/ _ \ | |/ _` (_-< / / # |___|_||_|_| \___/ |_|\__,_/__/_\_\ # # = Info Task # # Displays the ProjectInfo file. class Reap::Info < Reap::Task task_desc "Display ProjectInfo file." task_help %{ reap info Display ProjectInfo file. } def run puts $PROJECT_INFO.info_stream end end