<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -29,9 +29,6 @@ http://purefiction.net/mongrel_proctitle/
 The main difference is that the GemPlugin will automatically be loaded by all
 mongrels without additional code changes or configuration.
 
-This is a fork of rtomayko's fork of mongrel_proctitle that displays the current request
-instead of the most recent received request, as well a list of the request queue.
-
 Monitoring Mongrels
 -------------------
 </diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -12,30 +12,11 @@ CLEAN.include [ &quot;pkg&quot;, &quot;lib/*.bundle&quot;, &quot;*.gem&quot;, &quot;.config&quot;, &quot;**/*.log&quot; ]
 desc &quot;Build package&quot;
 task :default =&gt; [:package]
 
-version = &quot;1.2.5&quot;
-name = &quot;mongrel_proctitle&quot;
-
-spec =
-  Gem::Specification.new do |s|
-    s.name = name
-    s.version = version
-    s.platform = Gem::Platform::RUBY
-    s.summary = &quot;The mongrel_proctitle GemPlugin&quot;
-    s.description = s.summary
-    s.author = &quot;Ryan Tomayko&quot;
-    s.email = &quot;rtomayko@gmail.com&quot;
-    s.homepage = &quot;http://github.com/rtomayko/mongrel_proctitle&quot;
-    s.add_dependency('mongrel', '&gt;= 1.1')
-    s.add_dependency('gem_plugin', '&gt;= 0.2.3')
-    s.has_rdoc = true
-    s.extra_rdoc_files = [ &quot;README&quot; ]
-    s.bindir = &quot;bin&quot;
-    s.executables = [ &quot;mongrel_top&quot; ]
-    s.files = %w(LICENSE README Rakefile) +
-      Dir.glob(&quot;{bin,doc/rdoc,test,lib}/**/*&quot;)
-    s.require_path = &quot;lib&quot;
-    s.rubyforge_project = &quot;orphans&quot;
-  end
+# Load gemspec like github to surface SAFE issues early
+require 'rubygems/specification'
+data = File.read('mongrel_proctitle.gemspec')
+spec = nil
+Thread.new { spec = eval(&quot;$SAFE = 3\n#{data}&quot;) }.join
 
 Rake::GemPackageTask.new(spec) do |p|
   p.gem_spec = spec
@@ -51,10 +32,11 @@ task :uninstall =&gt; [:clean] do
   sh %{gem uninstall #{name}}
 end
 
-desc 'Publish gems and other distributables to tomayko.com'
+desc 'Publish gem and tarball to rubyforge'
 task :release =&gt; [:package] do
+  pkg = &quot;pkg/#{spec.name}-#{spec.version}&quot;
   sh &lt;&lt;-end
-    ssh tomayko.com 'mkdir -p /dist/#{name}' &amp;&amp; \
-    rsync -azP pkg/#{name}-#{version}.* tomayko.com:/dist/#{name}/
+    rubyforge add_release wink #{spec.name} #{spec.version} #{pkg}.gem &amp;&amp;
+    rubyforge add_file    wink #{spec.name} #{spec.version} #{pkg}.tar.gz
   end
 end</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,20 +1,40 @@
 # -*- encoding: utf-8 -*-
 
 Gem::Specification.new do |s|
-  s.name = &quot;mongrel_proctitle&quot;
-  s.version = &quot;1.2.11&quot;
+  s.specification_version = 2 if s.respond_to? :specification_version=
+  s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
+
+  s.name = 'mongrel_proctitle'
+  s.version = '1.2.11'
+  s.date = '2009-02-23'
+
   s.platform = Gem::Platform::RUBY
-  s.summary = &quot;The mongrel_proctitle Gem&quot;
+  s.summary = &quot;The mongrel_proctitle GemPlugin&quot;
   s.description = s.summary
-  s.author = &quot;Arya Asemanfar&quot;
-  s.email = &quot;arya@seriousbusiness.com&quot;
-  s.homepage = &quot;http://github.com/arya/mongrel_proctitle&quot;
-  s.add_dependency('mongrel', '&gt;= 1.1')
-  s.add_dependency('gem_plugin', '&gt;= 0.2.3')
+
+  s.authors = [&quot;Alexander Staubo&quot;, &quot;Ryan Tomayko&quot;, &quot;Arya Asemanfar&quot;]
+  s.email = &quot;r@tomayko.com&quot;
+  s.homepage = &quot;http://github.com/rtomayko/mongrel_proctitle&quot;
+
+  s.add_dependency 'mongrel',    '&gt;= 1.1'
+  s.add_dependency 'gem_plugin', '&gt;= 0.2.3'
+
   s.has_rdoc = true
-  s.extra_rdoc_files = [ &quot;README&quot; ]
-  s.bindir = &quot;bin&quot;
-  s.executables = [ &quot;mongrel_top&quot; ]
-  s.files = %w(LICENSE README Rakefile bin/mongrel_top lib/mongrel_proctitle.rb lib/arya-mongrel_proctitle/init.rb)
-  s.require_path = &quot;lib&quot;
+  s.extra_rdoc_files = [&quot;README&quot;]
+
+  s.files = %w[
+    LICENSE
+    README
+    Rakefile
+    mongrel_proctitle.gemspec
+    lib/mongrel_proctitle.rb
+    bin/mongrel_top
+  ]
+
+  s.bindir = 'bin'
+  s.executables = %w[mongrel_top]
+  s.require_path = 'lib'
+
+  s.rubyforge_project = &quot;wink&quot;
+  s.rubygems_version = '1.1.1'
 end</diff>
      <filename>mongrel_proctitle.gemspec</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>lib/arya-mongrel_proctitle/init.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>9dca0d9e242759e41bf5cbf6563c232213d86ef6</id>
    </parent>
  </parents>
  <author>
    <name>Ryan Tomayko</name>
    <email>rtomayko@gmail.com</email>
  </author>
  <url>http://github.com/rtomayko/mongrel_proctitle/commit/639436fec298beb1f424d578cc5134a353998e59</url>
  <id>639436fec298beb1f424d578cc5134a353998e59</id>
  <committed-date>2009-02-23T12:52:30-08:00</committed-date>
  <authored-date>2009-02-23T12:39:34-08:00</authored-date>
  <message>Use gemspec from Rakefile</message>
  <tree>becc342bd02fc21971a9fde7a2ac346fdfb1b9b1</tree>
  <committer>
    <name>Ryan Tomayko</name>
    <email>rtomayko@gmail.com</email>
  </committer>
</commit>
