]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mailshears/plugin.rb
Whitespace/comment cleanup.
[mailshears.git] / lib / mailshears / plugin.rb
index 2d0ded017fa8295ffb929d5bef0deea0e986a9b5..2e868c2762da7f5a46f99add6fb081750cef74d2 100644 (file)
@@ -7,7 +7,7 @@ module Plugin
     # one. The parameter given is the name of the class or module
     # that included us.
     @includers ||= []
-    @includers << c    
+    @includers << c
   end
 
   def Plugin.includers
@@ -39,14 +39,14 @@ module Plugin
   end
 
   def get_leftover_domains(db_domains)
-    # Given a list of domains, determine which domains belonging to this plugin
-    # are not contained in the given list.
+    # Given a list of domains, determine which domains belonging to
+    # this plugin are not contained in the given list.
     raise NotImplementedError
   end
 
   def get_leftover_accounts(db_accounts)
-    # Given a list of accounts, determine which accounts belonging to this plugin
-    # are not contained in the given list.
+    # Given a list of accounts, determine which accounts belonging to
+    # this plugin are not contained in the given list.
     raise NotImplementedError
   end
 end