X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=blobdiff_plain;f=lib%2Frm%2Frm_plugin.rb;h=fc0e7a081d97f602124dc9ccaef2ba53b60aa1d6;hp=49c340f7988f1fc75d1243de6d437795be0ac365;hb=72696d3f6e95ef773af9727e9c3459b9038b0fc2;hpb=483d14dc8228a81d12fb109d3ed6510e2d2b03c1 diff --git a/lib/rm/rm_plugin.rb b/lib/rm/rm_plugin.rb index 49c340f..fc0e7a0 100644 --- a/lib/rm/rm_plugin.rb +++ b/lib/rm/rm_plugin.rb @@ -1,6 +1,6 @@ module RmPlugin # - # Plugins for the removal of accounts. + # Plugins for the removal of users. # def RmPlugin.included(c) @@ -24,12 +24,12 @@ module RmPlugin raise NonexistentDomainError.new(domain) if usernames.empty? usernames.each do |u| - delete_account(u) + delete_user(u) end end - def delete_account(account) - # Delete the given account. + def delete_user(user) + # Delete the given user. raise NotImplementedError end