X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Fcommon%2Fplugin.rb;h=ed4ea004041a8986a151783707ffec1ff939815f;hp=77d80c469e7b1e94f794b84b0c532f632765f77e;hb=6f2bc0181c6bb900e37d04ea722beec54486b87e;hpb=bd2dabf89ab277fbe315b05e6dfa839afb5ce5ef diff --git a/lib/common/plugin.rb b/lib/common/plugin.rb index 77d80c4..ed4ea00 100644 --- a/lib/common/plugin.rb +++ b/lib/common/plugin.rb @@ -14,6 +14,16 @@ module Plugin return @includers end + def runner() + # The Runner associated with this plugin. + raise NotImplementedError + end + + def dummy_runner() + # The RummyRunner associated with this plugin. + raise NotImplementedError + end + def describe_domain(domain) # Provide a "description" of the domain. This is output along # with the domain name and can be anything of use to the system @@ -21,8 +31,8 @@ module Plugin raise NotImplementedError end - def describe_account(account) - # Provide a "description" of the account. This is output along + def describe_user(user) + # Provide a "description" of the user. This is output along # with the domain name and can be anything of use to the system # administrator. raise NotImplementedError