]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mv/mv_plugin.rb
Update a comment and delete a newline.
[mailshears.git] / lib / mv / mv_plugin.rb
index 40184422fbd8f9a5601fa3a57a92632163007d47..29f697c2da028275af40fa3da8f031d5af254592 100644 (file)
@@ -3,21 +3,14 @@ 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
+  extend Plugin::Run
 
-  def MvPlugin.includers
-    return @includers
+  def self.runner()
+    return MvRunner
   end
 
-  def mv_domain(from, to)
-    # Rename the given domain.
-    raise NotImplementedError
+  def self.dummy_runner()
+    return MvDummyRunner
   end
 
   def mv_user(from, to)