<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>README.rdoc</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,170 +1,170 @@
-# Adapted from the rake Rakefile.
-
-require &quot;rubygems&quot;
-Gem::manage_gems
-require &quot;rake/testtask&quot;
-require &quot;rake/rdoctask&quot;
-require &quot;rake/gempackagetask&quot;
-
-
+# Adapted from the rake Rakefile.
+
+require &quot;rubygems&quot;
+Gem::manage_gems
+require &quot;rake/testtask&quot;
+require &quot;rake/rdoctask&quot;
+require &quot;rake/gempackagetask&quot;
+
+
 desc &quot;Default Task&quot;
-task :default =&gt; [:tests, :rdoc]
-
-
-desc &quot;Run test case for Queue API&quot;
-Rake::TestTask.new :test_queue do |test|
-  test.verbose = true
-  test.test_files = [&quot;test/test-queue.rb&quot;]
-end
-desc &quot;Run test case for Topic API&quot;
-Rake::TestTask.new :test_topic do |test|
-  test.verbose = true
-  test.test_files = [&quot;test/test-topic.rb&quot;]
-end
-desc &quot;Run test case for Rails integration&quot;
-Rake::TestTask.new :test_rails do |test|
-  test.verbose = true
-  test.test_files = [&quot;test/test-rails.rb&quot;]
-end
-desc &quot;Run all test cases&quot;
-Rake::TestTask.new :tests do |test|
-  test.verbose = true
-  test.test_files = [&quot;test/*.rb&quot;]
-  #test.warning = true
-end
-
-
-# Create the documentation.
-Rake::RDocTask.new do |rdoc|
-  rdoc.main = &quot;README&quot;
-  rdoc.rdoc_files.include(&quot;README&quot;, &quot;lib/**/*.rb&quot;)
-  rdoc.title = &quot;Reliable Messaging&quot;
-end
-
-# Handle version number.
-class Version
-
-  PATTERN = /(\s*)VERSION.*(\d+\.\d+\.\d+)/
-
-  def initialize file, new_version
-    @file = file
-    @version = File.open @file, &quot;r&quot; do |file|
-      version = nil
-      file.each_line do |line|
-        match = line.match PATTERN
-        if match
-          version = match[2]
-          break
-        end
-      end
-    version
-    end
-    fail &quot;Can't determine version number&quot; unless @version
-    @new_version = new_version || @version
-  end
-
-  def changed?
-    @version != @new_version
-  end
-
-  def number
-    @version
-  end
-
-  def next
-    @new_version
-  end
-
-  def update
-    puts &quot;Updating to version #{@new_version}&quot;
-    copy = &quot;#{@file}.new&quot;
-    open @file, &quot;r&quot; do |input|
-      open copy, &quot;w&quot; do |output|
-        input.each_line do |line|
-          match = line.match PATTERN
-          if match
-            output.puts &quot;#{match[1]}VERSION = \&quot;#{@new_version}\&quot;&quot;
-          else
-            output.puts line
-          end
+task :default =&gt; [:tests, :rdoc]
+
+
+desc &quot;Run test case for Queue API&quot;
+Rake::TestTask.new :test_queue do |test|
+    test.verbose = true
+    test.test_files = [&quot;test/test-queue.rb&quot;]
+end
+desc &quot;Run test case for Topic API&quot;
+Rake::TestTask.new :test_topic do |test|
+    test.verbose = true
+    test.test_files = [&quot;test/test-topic.rb&quot;]
+end
+desc &quot;Run test case for Rails integration&quot;
+Rake::TestTask.new :test_rails do |test|
+    test.verbose = true
+    test.test_files = [&quot;test/test-rails.rb&quot;]
+end
+desc &quot;Run all test cases&quot;
+Rake::TestTask.new :tests do |test|
+    test.verbose = true
+    test.test_files = [&quot;test/*.rb&quot;]
+    #test.warning = true
+end
+
+
+# Create the documentation.
+Rake::RDocTask.new do |rdoc|
+    rdoc.main = &quot;README.rdoc&quot;
+    rdoc.rdoc_files.include(&quot;README.rdoc&quot;, &quot;lib/**/*.rb&quot;)
+    rdoc.title = &quot;Reliable Messaging&quot;
+end
+
+# Handle version number.
+class Version
+
+    PATTERN = /(\s*)VERSION.*(\d+\.\d+\.\d+)/
+
+    def initialize file, new_version
+        @file = file
+        @version = File.open @file, &quot;r&quot; do |file|
+            version = nil
+            file.each_line do |line|
+                match = line.match PATTERN
+                if match
+                    version = match[2]
+                    break
+                end
+            end
+            version
+        end
+        fail &quot;Can't determine version number&quot; unless @version
+        @new_version = new_version || @version
+    end
+
+    def changed?
+        @version != @new_version
+    end
+
+    def number
+        @version
+    end
+
+    def next
+        @new_version
+    end
+
+    def update
+        puts &quot;Updating to version #{@new_version}&quot;
+        copy = &quot;#{@file}.new&quot;
+        open @file, &quot;r&quot; do |input|
+            open copy, &quot;w&quot; do |output|
+                input.each_line do |line|
+                    match = line.match PATTERN
+                    if match
+                        output.puts &quot;#{match[1]}VERSION = \&quot;#{@new_version}\&quot;&quot;
+                    else
+                        output.puts line
+                    end
+                end
+            end
         end
-      end
-    end
-    mv copy, @file
-    @version = @new_version
-  end
-
-end
-version = Version.new &quot;lib/reliable-msg.rb&quot;, ENV[&quot;version&quot;]
-
-
-# Create the GEM package.
-gem_spec = Gem::Specification.new do |spec|
-  spec.name = &quot;reliable-msg&quot;
-  spec.version = version.next
-  spec.summary = &quot;Reliable messaging and persistent queues for building asynchronous applications in Ruby&quot;
-  spec.description = &lt;&lt;-EOF
-    This package provides reliable messaging and persistent queues for
-    building asynchronous applications in Ruby.
-
-    It supports transaction processing, message selectors, priorities,
-    delivery semantics, remote queue managers, disk-based and MySQL message
-    stores and more.
-  EOF
-  spec.author = &quot;Assaf Arkin&quot;
-  spec.email = &quot;assaf@labnotes.org&quot;
-  spec.homepage = &quot;http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Ruby/ReliableMessaging&quot;
-
-  spec.files = FileList[&quot;{bin,test,lib,docs}/**/*&quot;, &quot;README&quot;, &quot;MIT-LICENSE&quot;, &quot;Rakefile&quot;, &quot;changelog.txt&quot;].to_a
-  spec.require_path = &quot;lib&quot;
-  spec.autorequire = &quot;reliable-msg.rb&quot;
-  spec.bindir = &quot;bin&quot;
-  spec.executables = [&quot;queues&quot;]
-  spec.default_executable = &quot;queues&quot;
-  spec.requirements &lt;&lt; &quot;MySQL for database store, otherwise uses the file system&quot;
-  spec.has_rdoc = true
-  spec.rdoc_options &lt;&lt; &quot;--main&quot; &lt;&lt; &quot;README&quot; &lt;&lt; &quot;--title&quot; &lt;&lt;  &quot;Reliable Messaging for Ruby&quot; &lt;&lt; &quot;--line-numbers&quot;
-  spec.extra_rdoc_files = [&quot;README&quot;]
-  spec.rubyforge_project = &quot;reliable-msg&quot;
-  spec.add_dependency(%q&lt;uuid&gt;, [&quot;&gt;= 1.0.0&quot;])
-end
-
-gem = Rake::GemPackageTask.new(gem_spec) do |pkg|
-  pkg.need_tar = true
-  pkg.need_zip = true
-end
-
-
+        mv copy, @file
+        @version = @new_version
+    end
+
+end
+version = Version.new &quot;lib/reliable-msg.rb&quot;, ENV[&quot;version&quot;]
+
+
+# Create the GEM package.
+gem_spec = Gem::Specification.new do |spec|
+    spec.name = &quot;reliable-msg&quot;
+    spec.version = version.next
+    spec.summary = &quot;Reliable messaging and persistent queues for building asynchronous applications in Ruby&quot;
+    spec.description = &lt;&lt;-EOF
+        This package provides reliable messaging and persistent queues for
+        building asynchronous applications in Ruby.
+
+        It supports transaction processing, message selectors, priorities,
+        delivery semantics, remote queue managers, disk-based and MySQL message
+        stores and more.
+EOF
+    spec.author = &quot;Assaf Arkin&quot;
+    spec.email = &quot;assaf@labnotes.org&quot;
+    spec.homepage = &quot;http://github.com/assaf/reliable-msg&quot;
+
+    spec.files = FileList[&quot;{bin,test,lib,docs}/**/*&quot;, &quot;README.rdoc&quot;, &quot;MIT-LICENSE&quot;, &quot;Rakefile&quot;, &quot;changelog.txt&quot;].to_a
+    spec.require_path = &quot;lib&quot;
+    spec.autorequire = &quot;reliable-msg.rb&quot;
+    spec.bindir = &quot;bin&quot;
+    spec.executables = [&quot;queues&quot;]
+    spec.default_executable = &quot;queues&quot;
+    spec.requirements &lt;&lt; &quot;MySQL for database store, otherwise uses the file system&quot;
+    spec.has_rdoc = true
+    spec.rdoc_options &lt;&lt; &quot;--main&quot; &lt;&lt; &quot;README.rdoc&quot; &lt;&lt; &quot;--title&quot; &lt;&lt;  &quot;Reliable Messaging for Ruby&quot; &lt;&lt; &quot;--line-numbers&quot;
+    spec.extra_rdoc_files = [&quot;README.rdoc&quot;]
+    spec.rubyforge_project = &quot;reliable-msg&quot;
+    spec.add_dependency(%q&lt;uuid&gt;, [&quot;&gt;= 1.0.0&quot;])
+end
+
+gem = Rake::GemPackageTask.new(gem_spec) do |pkg|
+    pkg.need_tar = true
+    pkg.need_zip = true
+end
+
+
 desc &quot;Look for TODO and FIXME tags in the code&quot;
 task :todo do
   FileList[&quot;**/*.rb&quot;].egrep /#.*(FIXME|TODO|TBD)/
 end
-
-
+
+
 # --------------------------------------------------------------------
 # Creating a release
 
 desc &quot;Make a new release&quot;
 task :release =&gt; [:tests, :prerelease, :clobber, :update_version, :package] do
-  puts
-  puts &quot;**************************************************************&quot;
-  puts &quot;* Release #{version.number} Complete.&quot;
-  puts &quot;* Packages ready to upload.&quot;
-  puts &quot;**************************************************************&quot;
-  puts
+    puts
+    puts &quot;**************************************************************&quot;
+    puts &quot;* Release #{version.number} Complete.&quot;
+    puts &quot;* Packages ready to upload.&quot;
+    puts &quot;**************************************************************&quot;
+    puts
+end
+
+task :prerelease do
+    if !version.changed? &amp;&amp; ENV[&quot;reuse&quot;] != version.number
+        fail &quot;Current version is #{version.number}, must specify reuse=ver to reuse existing version&quot;
+    end
 end
-
-task :prerelease do
-  if !version.changed? &amp;&amp; ENV[&quot;reuse&quot;] != version.number
-    fail &quot;Current version is #{version.number}, must specify reuse=ver to reuse existing version&quot;
-  end
+
+task :update_version =&gt; [:prerelease] do
+    if !version.changed?
+        puts &quot;No version change ... skipping version update&quot;
+    else
+        version.update
+    end
 end
-
-task :update_version =&gt; [:prerelease] do
-  if !version.changed?
-    puts &quot;No version change ... skipping version update&quot;
-  else
-    version.update
-  end
-end
-
+</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 # = cli.rb - Reliable messaging command-line interface
 #
 # Author:: Assaf Arkin  assaf@labnotes.org
-# Documentation:: http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Ruby/ReliableMessaging
 # Copyright:: Copyright (c) 2005,2006 Assaf Arkin
 # License:: MIT and/or Creative Commons Attribution-ShareAlike
 #</diff>
      <filename>lib/reliable-msg/cli.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 # = client.rb - Base class for queue/topic API
 #
 # Author:: Assaf Arkin  assaf@labnotes.org
-# Documentation:: http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Ruby/ReliableMessaging
 # Copyright:: Copyright (c) 2005,2006 Assaf Arkin
 # License:: MIT and/or Creative Commons Attribution-ShareAlike
 #</diff>
      <filename>lib/reliable-msg/client.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 # = message-store.rb - Queue manager storage adapters
 #
 # Author:: Assaf Arkin  assaf@labnotes.org
-# Documentation:: http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Ruby/ReliableMessaging
 # Copyright:: Copyright (c) 2005,2006 Assaf Arkin
 # License:: MIT and/or Creative Commons Attribution-ShareAlike
 #</diff>
      <filename>lib/reliable-msg/message-store.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 # = queue-manager.rb - Queue manager
 #
 # Author:: Assaf Arkin  assaf@labnotes.org
-# Documentation:: http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Ruby/ReliableMessaging
 # Copyright:: Copyright (c) 2005,2006 Assaf Arkin
 # License:: MIT and/or Creative Commons Attribution-ShareAlike
 #</diff>
      <filename>lib/reliable-msg/queue-manager.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 # = queue.rb - Reliable queue client API
 #
 # Author:: Assaf Arkin  assaf@labnotes.org
-# Documentation:: http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Ruby/ReliableMessaging
 # Copyright:: Copyright (c) 2005,2006 Assaf Arkin
 # License:: MIT and/or Creative Commons Attribution-ShareAlike
 #</diff>
      <filename>lib/reliable-msg/queue.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 # = selector.rb - Deferred expression evaluation selector
 #
 # Author:: Assaf Arkin  assaf@labnotes.org
-# Documentation:: http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Ruby/ReliableMessaging
 # Copyright:: Copyright (c) 2005,2006 Assaf Arkin
 # License:: MIT and/or Creative Commons Attribution-ShareAlike
 #</diff>
      <filename>lib/reliable-msg/selector.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 # = topic.rb - Publish to topic API
 #
 # Author:: Assaf Arkin  assaf@labnotes.org
-# Documentation:: http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Ruby/ReliableMessaging
 # Copyright:: Copyright (c) 2005,2006 Assaf Arkin
 # License:: MIT and/or Creative Commons Attribution-ShareAlike
 #</diff>
      <filename>lib/reliable-msg/topic.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 # = test-queue.rb - Queue API test cases
 #
 # Author:: Assaf Arkin  assaf@labnotes.org
-# Documentation:: http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Ruby/ReliableMessaging
 # Copyright:: Copyright (c) 2005,2006 Assaf Arkin
 # License:: MIT and/or Creative Commons Attribution-ShareAlike
 #</diff>
      <filename>test/test-queue.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 # = test-rails.rb - Rails integration test cases
 #
 # Author:: Assaf Arkin  assaf@labnotes.org
-# Documentation:: http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Ruby/ReliableMessaging
 # Copyright:: Copyright (c) 2005 Assaf Arkin
 # License:: MIT and/or Creative Commons Attribution-ShareAlike
 #</diff>
      <filename>test/test-rails.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 # = test-topic.rb - Topic API test cases
 #
 # Author:: Assaf Arkin  assaf@labnotes.org
-# Documentation:: http://trac.labnotes.org/cgi-bin/trac.cgi/wiki/Ruby/ReliableMessaging
 # Copyright:: Copyright (c) 2005 Assaf Arkin
 # License:: MIT and/or Creative Commons Attribution-ShareAlike
 #</diff>
      <filename>test/test-topic.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>README</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>d84109e8621bb869ad0db58c16dc82ae3eed846d</id>
    </parent>
  </parents>
  <author>
    <name>Assaf Arkin</name>
    <email>assaf@labnotes.org</email>
  </author>
  <url>http://github.com/assaf/reliable-msg/commit/9450b2d04ee71dac12542f217c678cfdd7d021c7</url>
  <id>9450b2d04ee71dac12542f217c678cfdd7d021c7</id>
  <committed-date>2008-10-28T16:05:55-07:00</committed-date>
  <authored-date>2008-10-28T16:03:00-07:00</authored-date>
  <message>README -&gt; README.rdoc.
Removed all mentions of Trac</message>
  <tree>163536caec5feee221944cd081e14782656e3da7</tree>
  <committer>
    <name>Assaf Arkin</name>
    <email>assaf@labnotes.org</email>
  </committer>
</commit>
