X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=lib%2Fcommon%2Frunner.rb;h=b9bb8c9323af87df7d097f2879f481f7ba7cd039;hb=e7fa62fc599b7583102fe48fbaad3db4f911a6da;hp=c48f89a4f629168d657142871bc19f46ed781c27;hpb=a6ae98f0423603445b621a8eaa17443c8d590b45;p=mailshears.git diff --git a/lib/common/runner.rb b/lib/common/runner.rb index c48f89a..b9bb8c9 100644 --- a/lib/common/runner.rb +++ b/lib/common/runner.rb @@ -2,4 +2,10 @@ module Runner def run(plugin, targets) raise NotImplementedError end + + def report(plugin, msg) + print "#{plugin.class.to_s()} - " + puts msg + end + end