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

- old
+ new

@@ -13,15 +13,13 @@ section_required true task_desc "A no-op task to help debug reap itself." - attr_accessor :message - - def init + def init( msg ) end - def run - puts ( message || 'No message field in noop section.' ) + def run( msg ) + puts ( msg.message || 'No message field in noop section.' ) end end