lib/reap/task/info.rb in reap-4.3.2 vs lib/reap/task/info.rb in reap-4.3.3

- old
+ new

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