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