X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fmv%2Fmv_plugin.rb;h=29f697c2da028275af40fa3da8f031d5af254592;hp=958f6d40f98d0fd3d3cfdb76d24000c6fcd7b844;hb=35dffd876681d82cb87d54c6a28b8cbdfcc28925;hpb=6f2bc0181c6bb900e37d04ea722beec54486b87e diff --git a/lib/mv/mv_plugin.rb b/lib/mv/mv_plugin.rb index 958f6d4..29f697c 100644 --- a/lib/mv/mv_plugin.rb +++ b/lib/mv/mv_plugin.rb @@ -3,31 +3,16 @@ module MvPlugin # Plugins for moving (renaming) users. # - def MvPlugin.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 - end - - def MvPlugin.includers - return @includers - end + extend Plugin::Run - def runner() + def self.runner() return MvRunner end - def dummy_runner() + def self.dummy_runner() return MvDummyRunner end - def mv_domain(from, to) - # Rename the given domain. - raise NotImplementedError - end - def mv_user(from, to) # Rename the given user. raise NotImplementedError