module Runner def run(plugin, targets) raise NotImplementedError end def report(plugin, msg) print "#{plugin.class.to_s()} - " puts msg end end