]> gitweb.michael.orlitzky.com - mailshears.git/blob - lib/common/runner.rb
Factor out plugin running into the Plugin module (along with the includers() handling).
[mailshears.git] / lib / common / runner.rb
1 module Runner
2
3 def run(plugin, targets)
4 raise NotImplementedError
5 end
6
7 def report(plugin, msg)
8 print "#{plugin.class.to_s()} - "
9 puts msg
10 end
11
12 end