lib/reap/task/info.rb in reap-4.0.0 vs lib/reap/task/info.rb in reap-4.3.1

- old
+ new

@@ -4,17 +4,15 @@ # # Info Task - Displays the ProjectInfo file. # class Reap::Info < Reap::Task - def task_desc - "Display ProjectInfo file." - end + task_desc "Display ProjectInfo file." def init end def run - puts ProjectInfo.info_stream + puts $PROJECT_INFO.info_stream end end