<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -5,4 +5,3 @@
 - The display of the number of requests processed and queued does not currently work.  Shows '-' for now. Help?
 - Can the process title change itself back to 'idle' when not handling a current request?
 - can this be converted to a Rails plugin so it 'just works'?
-</diff>
      <filename>TODO</filename>
    </modified>
    <modified>
      <diff>@@ -8,7 +8,7 @@ module Rack
     alias_method :old_finish, :finish
     alias_method :finish, :new_finish
   end
-  
+
   class File
     # for some reason, serving a file doesn't call the finish method...
     def new_call(env)
@@ -22,24 +22,24 @@ module Rack
 end
 
 class ProcTitle
- 
+
   def initialize(app)
     # stolen from mongrel_proctitle plugin
     wd =  Dir.pwd.split(&quot;/&quot;)
     wd.pop; wd.pop
     $app_name = wd.last ? wd.last : 'rails app'
-    
+
     $app = app
     $count = 0
   end
- 
+
   def call(env)
     $count += 1
     $port = env['SERVER_PORT']
     $0 = &quot;thin [#{$app_name}/#{$port}/-/#{$count}]: handling #{env['SERVER_NAME']}: #{env['REQUEST_METHOD']} #{env['PATH_INFO']}&quot;
     $app.call(env)
   end
- 
+
 end
 use ProcTitle
 run Rack::Adapter::Rails.new(:root =&gt; '/your/rails/root/dir', :environment =&gt; 'production')</diff>
      <filename>thin_proctitle.ru</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0d6b1cf39466933e44af90a43ff48dc8ae3534ce</id>
    </parent>
  </parents>
  <author>
    <name>Glenn Rempe</name>
    <email>glenn@rempe.us</email>
  </author>
  <url>http://github.com/grempe/thin-proctitle/commit/9ea64339405aaf8cfae8f1872a0a4382ae9f23e9</url>
  <id>9ea64339405aaf8cfae8f1872a0a4382ae9f23e9</id>
  <committed-date>2008-09-26T13:21:47-07:00</committed-date>
  <authored-date>2008-09-26T13:21:47-07:00</authored-date>
  <message>Whitespace</message>
  <tree>69898677d1fc24310916511e9525442ca82e0780</tree>
  <committer>
    <name>Glenn Rempe</name>
    <email>glenn@rempe.us</email>
  </committer>
</commit>
