X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fcommon%2Frunner.rb;h=b9bb8c9323af87df7d097f2879f481f7ba7cd039;hp=c48f89a4f629168d657142871bc19f46ed781c27;hb=51f027b01e242737956c3ab5aecdd322d6ceeeed;hpb=e3826d8926e11763837a591986d453e9ef5d9dec 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