about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-06-11 13:22:31 -0700
committerEric Wong <normalperson@yhbt.net>2010-06-11 13:22:31 -0700
commit549ac1249142d2f9a75f8eb05963898c53ab6b6d (patch)
tree2fbe870c8469e24a725a2f4d2ba027a9b3c469e3
parentb7247fe1329092671a893b4f75def8d66bad31c8 (diff)
downloadunicorn-549ac1249142d2f9a75f8eb05963898c53ab6b6d.tar.gz
No point in having namespaces be classes when we never
create instances of them...
-rw-r--r--lib/unicorn/launcher.rb2
-rw-r--r--lib/unicorn/util.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/unicorn/launcher.rb b/lib/unicorn/launcher.rb
index 7f3ffa6..0d957cf 100644
--- a/lib/unicorn/launcher.rb
+++ b/lib/unicorn/launcher.rb
@@ -7,7 +7,7 @@ $stderr.binmode
 
 require 'unicorn'
 
-class Unicorn::Launcher
+module Unicorn::Launcher
 
   # We don't do a lot of standard daemonization stuff:
   #   * umask is whatever was set by the parent process at startup
diff --git a/lib/unicorn/util.rb b/lib/unicorn/util.rb
index 479dd00..4e05864 100644
--- a/lib/unicorn/util.rb
+++ b/lib/unicorn/util.rb
@@ -14,7 +14,7 @@ module Unicorn
     end
   end
 
-  class Util
+  module Util
     class << self
 
       def is_log?(fp)