X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fcommon%2Fplugin.rb;fp=lib%2Fmailshears%2Fplugin.rb;h=0687989fe03169e3aa2e4d9c256f30bf9cbe8b67;hp=2e868c2762da7f5a46f99add6fb081750cef74d2;hb=c6cab6b71770d14dad1115db90a00b990c44a58d;hpb=150ee5398c17acca8ef03b3cc48b3aa7bc1b0035 diff --git a/lib/mailshears/plugin.rb b/lib/common/plugin.rb similarity index 59% rename from lib/mailshears/plugin.rb rename to lib/common/plugin.rb index 2e868c2..0687989 100644 --- a/lib/mailshears/plugin.rb +++ b/lib/common/plugin.rb @@ -28,25 +28,4 @@ module Plugin raise NotImplementedError end - def delete_domain(domain) - # Delete the given domain. - raise NotImplementedError - end - - def delete_account(account) - # Delete the given account. - raise NotImplementedError - 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. - 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. - raise NotImplementedError - end end