]> gitweb.michael.orlitzky.com - mailshears.git/commitdiff
Whitespace/comment cleanup.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 18 Mar 2013 23:46:31 +0000 (19:46 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 18 Mar 2013 23:46:31 +0000 (19:46 -0400)
bin/mailshears
lib/mailshears/configuration.rb
lib/mailshears/exit_codes.rb
lib/mailshears/filesystem.rb
lib/mailshears/plugin.rb

index d181d0834f70a84492530a779a6b022c9ee2c674..a4b082323611500e22e6e159a6e5a35c5e492c17 100755 (executable)
@@ -95,7 +95,7 @@ Plugin.includers.each do |plugin_class|
         plugin.delete_account(account)
         puts "Removed: #{account} (#{account_description})"
       end
-      
+
       leftover_domains.each do |domain|
         # Get the description before we delete the domain.
         domain_description = plugin.describe_domain(domain)
index e77969da4ae3bf592dd0232604be39cdcc4afa15..f9a07bf1f7c81df2b5166991cb9d20dcfb7c2131 100644 (file)
@@ -27,7 +27,7 @@ class Configuration
     @dict = cfg
   end
 
-  
+
   def method_missing(sym, *args)
     # Replace all missing method calls with dictionary lookups.
     return @dict[sym]
index f304ff6ea14a8de48712fbce3ec898d2de3c7c51..8f70919fc457d5500a0d52c468419a7b2a4b5ca5 100644 (file)
@@ -3,5 +3,5 @@ module ExitCodes
   SUCCESS = 0
   FILESYSTEM_ERROR = 1
   DATABASE_ERROR = 2
-  
+
 end
index 473a1ed16a46032a1c4c6f37be56a8bd81f6a9e3..72ff901dd1e0dc602369c6a795a13d0164ab30d5 100644 (file)
@@ -3,7 +3,7 @@ class Filesystem
   def self.begins_with_dot(path)
     return (path[0..0] == '.')
   end
-  
+
   def self.get_subdirs(dir)
     subdirs = []
 
@@ -15,8 +15,8 @@ class Filesystem
         end
       end
     end
-    
+
     return subdirs
   end
-  
+
 end
index 2d0ded017fa8295ffb929d5bef0deea0e986a9b5..2e868c2762da7f5a46f99add6fb081750cef74d2 100644 (file)
@@ -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