X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Frm%2Frm_plugin.rb;h=fe938b128d200b1a10427cbff7cdde17c57bd4b8;hp=fc0e7a081d97f602124dc9ccaef2ba53b60aa1d6;hb=c2737d4d972df30725e417bed0940fc8df8e88bd;hpb=72696d3f6e95ef773af9727e9c3459b9038b0fc2 diff --git a/lib/rm/rm_plugin.rb b/lib/rm/rm_plugin.rb index fc0e7a0..fe938b1 100644 --- a/lib/rm/rm_plugin.rb +++ b/lib/rm/rm_plugin.rb @@ -1,18 +1,18 @@ +require 'common/plugin.rb' + module RmPlugin # # Plugins for the removal of users. # - def RmPlugin.included(c) - # Callback, called whenever another class or module includes this - # one. The parameter given is the name of the class or module - # that included us. - @includers ||= [] - @includers << c + extend Plugin::Run + + def self.runner() + return RmRunner end - def RmPlugin.includers - return @includers + def self.dummy_runner() + return RmDummyRunner end def delete_domain(domain)