]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/rm/rm_plugin.rb
Replace 'account' with 'user' everywhere.
[mailshears.git] / lib / rm / rm_plugin.rb
index 49c340f7988f1fc75d1243de6d437795be0ac365..fc0e7a081d97f602124dc9ccaef2ba53b60aa1d6 100644 (file)
@@ -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