<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -11,7 +11,7 @@ PROJECT_VERSION = ENV['VERSION'] || Date.today.strftime(&quot;%Y.%m.%d&quot;)
 GEMSPEC = Gem::Specification.new{|s|
   s.name         = 'ticgit'
   s.version      = PROJECT_VERSION
-  s.author       = &quot;Michael 'manveru' Fellinger&quot;
+  s.authors      = ['Scott Chacon', &quot;Michael 'manveru' Fellinger&quot;]
   s.summary      = &quot;A distributed ticketing system for git projects.&quot;
   # s.description  = &quot;A distributed ticketing system for git projects.&quot;
   s.email        = 'm.fellinger@gmail.com'</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,18 +1,32 @@
+# -*- encoding: utf-8 -*-
+
 Gem::Specification.new do |s|
-    s.platform  =   Gem::Platform::RUBY
-    s.name      =   &quot;ticgit&quot;
-    s.version   =   &quot;0.3.6&quot;
-    s.date      =   &quot;2008-05-10&quot;
-    s.author    =   &quot;Scott Chacon&quot;
-    s.email     =   &quot;schacon@gmail.com&quot;
-    s.summary   =   &quot;A distributed ticketing system for Git projects.&quot;
-    s.files     =   [&quot;lib/ticgit/base.rb&quot;, &quot;lib/ticgit/cli.rb&quot;, &quot;lib/ticgit/comment.rb&quot;, &quot;lib/ticgit/ticket.rb&quot;, &quot;lib/ticgit.rb&quot;, &quot;bin/ti&quot;, &quot;bin/ticgitweb&quot;]
+  s.name = %q{ticgit}
+  s.version = &quot;2009.05.20&quot;
+
+  s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
+  s.authors = [&quot;Scott Chacon&quot;, &quot;Michael 'manveru' Fellinger&quot;]
+  s.date = %q{2009-05-20}
+  s.default_executable = %q{ti}
+  s.email = %q{m.fellinger@gmail.com}
+  s.executables = [&quot;ti&quot;, &quot;ticgitweb&quot;]
+  s.files = [&quot;.gitignore&quot;, &quot;AUTHORS&quot;, &quot;CHANGELOG&quot;, &quot;LICENSE&quot;, &quot;README&quot;, &quot;Rakefile&quot;, &quot;bin/ti&quot;, &quot;bin/ticgitweb&quot;, &quot;examples/post-commit&quot;, &quot;lib/ticgit.rb&quot;, &quot;lib/ticgit/base.rb&quot;, &quot;lib/ticgit/cli.rb&quot;, &quot;lib/ticgit/command.rb&quot;, &quot;lib/ticgit/command/assign.rb&quot;, &quot;lib/ticgit/command/checkout.rb&quot;, &quot;lib/ticgit/command/comment.rb&quot;, &quot;lib/ticgit/command/list.rb&quot;, &quot;lib/ticgit/command/milestone.rb&quot;, &quot;lib/ticgit/command/new.rb&quot;, &quot;lib/ticgit/command/points.rb&quot;, &quot;lib/ticgit/command/recent.rb&quot;, &quot;lib/ticgit/command/show.rb&quot;, &quot;lib/ticgit/command/state.rb&quot;, &quot;lib/ticgit/command/tag.rb&quot;, &quot;lib/ticgit/comment.rb&quot;, &quot;lib/ticgit/ticket.rb&quot;, &quot;lib/ticgit/version.rb&quot;, &quot;note/IMPLEMENT&quot;, &quot;note/NOTES&quot;, &quot;note/OUTPUT&quot;, &quot;note/TODO&quot;, &quot;spec/helper.rb&quot;, &quot;spec/ticgit/base.rb&quot;, &quot;spec/ticgit/cli.rb&quot;, &quot;spec/ticgit/command/new.rb&quot;, &quot;spec/ticgit/command/points.rb&quot;, &quot;spec/ticgit/command/state.rb&quot;, &quot;spec/ticgit/open.rb&quot;, &quot;tasks/authors.rake&quot;, &quot;tasks/bacon.rake&quot;, &quot;tasks/changelog.rake&quot;, &quot;tasks/cucumber.rake&quot;, &quot;tasks/gem.rake&quot;, &quot;tasks/gem_installer.rake&quot;, &quot;tasks/git.rake&quot;, &quot;tasks/grancher.rake&quot;, &quot;tasks/install_dependencies.rake&quot;, &quot;tasks/manifest.rake&quot;, &quot;tasks/metric_changes.rake&quot;, &quot;tasks/rcov.rake&quot;, &quot;tasks/release.rake&quot;, &quot;tasks/reversion.rake&quot;, &quot;tasks/setup.rake&quot;, &quot;tasks/todo.rake&quot;, &quot;tasks/traits.rake&quot;, &quot;tasks/yard.rake&quot;, &quot;tasks/ycov.rake&quot;, &quot;ticgit.gemspec&quot;]
+  s.has_rdoc = true
+  s.homepage = %q{http://github.com/manveru/ticgit}
+  s.require_paths = [&quot;lib&quot;]
+  s.rubygems_version = %q{1.3.1}
+  s.summary = %q{A distributed ticketing system for git projects.}
 
-    s.bindir = 'bin'
-    s.executables = [&quot;ti&quot;, &quot;ticgitweb&quot;]
-    s.default_executable = %q{ti}
-    s.homepage = &quot;http://github/schacon/ticgit&quot;
+  if s.respond_to? :specification_version then
+    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
+    s.specification_version = 2
 
-    s.require_paths = [&quot;lib&quot;, &quot;bin&quot;]
-    s.specification_version = 2 if s.respond_to? :specification_version=
+    if Gem::Version.new(Gem::RubyGemsVersion) &gt;= Gem::Version.new('1.2.0') then
+      s.add_runtime_dependency(%q&lt;git&gt;, [&quot;&gt;= 1.0.5&quot;])
+    else
+      s.add_dependency(%q&lt;git&gt;, [&quot;&gt;= 1.0.5&quot;])
+    end
+  else
+    s.add_dependency(%q&lt;git&gt;, [&quot;&gt;= 1.0.5&quot;])
+  end
 end</diff>
      <filename>ticgit.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>5816e189c971295960ac28e2c5e5feebe3da99c1</id>
    </parent>
  </parents>
  <author>
    <name>Michael Fellinger</name>
    <email>m.fellinger@gmail.com</email>
  </author>
  <url>http://github.com/manveru/ticgit/commit/21e97df022d930c5f86a16eea127771fd63b0ec8</url>
  <id>21e97df022d930c5f86a16eea127771fd63b0ec8</id>
  <committed-date>2009-05-20T05:04:48-07:00</committed-date>
  <authored-date>2009-05-20T05:04:09-07:00</authored-date>
  <message>New gemspec, add chacon to project authors</message>
  <tree>42fd50e6de12445a7fdc878453ef38974d6df56c</tree>
  <committer>
    <name>Michael Fellinger</name>
    <email>m.fellinger@gmail.com</email>
  </committer>
</commit>
