X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fmailshears%2Fplugin.rb;h=2e868c2762da7f5a46f99add6fb081750cef74d2;hp=2d0ded017fa8295ffb929d5bef0deea0e986a9b5;hb=806cb5223ac1f439cc40b8354a7dad08b380cfd5;hpb=314f5670531dfda9b3d708fce8b0161a098cf134 diff --git a/lib/mailshears/plugin.rb b/lib/mailshears/plugin.rb index 2d0ded0..2e868c2 100644 --- a/lib/mailshears/plugin.rb +++ b/lib/mailshears/plugin.rb @@ -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