<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>VERSION</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,3 @@
 .DS_Store
-work/*
-repos/*
-*.tmproj
 garlic-*.gem
+doc</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -1,10 +1,17 @@
+== 0.1.10
+
+* 2 minor enhancements
+  * updated gemspec for gemcutter and rubyforge
+  * templates now include rails 2.3
+  
+  
 == 0.1.9
 
 * 1 major enhancement
-  * added garlic shell commands (sh/garlic.sh) for easing the galric workflow
+  * added garlic shell commands (sh/garlic.sh) for easing the garlic workflow
     to use them, add this to your ~/.profile
     
-      source `gem environment gemdir`/gems/ianwhite-garlic*/sh/garlic.sh
+      source `garlic --path`/sh/garlic.sh
 
 == 0.1.8
 </diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,8 @@
-h1. garlic: lightweight continuous integration for rails using git
+= garlic
 
-This is not a CI server, use cruisecontrol.rb for that.  This is a simple set
+&lt;b&gt;lightweight continuous integration for rails using git&lt;/b&gt;
+
+This is not a CI server, use cruisecontrol.rb or integrity for that.  This is a simple set
 of commands (or rake tasks) that let you specify a bunch of rails builds to run against, and
 dependencies to install.
 
@@ -9,143 +11,123 @@ and allows specifying other plugin dependencies (and their versions and any
 setup requried).
 
 If you want to run your specs (or whatever) against different versions of gems
-that you have installed, then check out &quot;ginger&quot;:http://github.com/freelancing-god/ginger by &quot;Pat Allen&quot;:http://github.com/freelancing-god
+that you have installed, then check out {ginger}[http://github.com/freelancing-god/ginger] by {Pat Allen}[http://github.com/freelancing-god]
 
 Garlic works by cloning git repos for all your dependencies (so they all must be
 git repos), and then using git to checkout various tags and branches to build
 your app against.
 
-&quot;Here's an example of running a plugin against 3 different rails verisons and 3 different rspec versions&quot;:http://gist.github.com/28786
+Here's an example of running a plugin against 3 different rails verisons and 3 different rspec versions: {gist 28786}[http://gist.github.com/28786]
 
-h2. It's still new, and not shiny yet
+== It's still new, and not shiny yet
 
 Please feel free to make it shinier.  I'm successfully using it on most of my plugins, and I test
 with rspec and cucumber.
 
-Check out the &quot;TODO LIST&quot;:http://github.com/ianwhite/garlic/tree/master/Todo.txt
+Check out the {TODO LIST}[http://github.com/ianwhite/garlic/tree/master/Todo.txt]
 
-h2. Get up and running quickly
+== Get up and running quickly
 
 You have a plugin and you want it tested against different versions of rails?
 
-* install garlic as a gem (see below)
-* cd into your (say, rspec tested) plugin directory
+&lt;b&gt;1.&lt;/b&gt; install garlic as a gem (see below)
+
+&lt;b&gt;2.&lt;/b&gt; cd into your (say, rspec tested) plugin directory
 
-&lt;pre&gt;
-    garlic generate rspec &gt; garlic.rb
-    garlic install_repos
-    garlic
-&lt;/pre&gt;
+  garlic generate rspec &gt; garlic.rb
+  garlic install_repos
+  garlic
 
-* See what happens, edit garlic.rb to change rails versions and other stuff.
+&lt;b&gt;3.&lt;/b&gt; See what happens, edit garlic.rb to change rails versions and other stuff.
 
-&lt;pre&gt;
-    garlic --help # will probably help
-&lt;/pre&gt;
+  garlic --help # will probably help
 
-h2. Installing
+== Installing
 
 Install the garlic gem
 
-&lt;pre&gt;
-    sudo gem install ianwhite-garlic --source=http://gems.github.com
-&lt;/pre&gt;
+  # from rubyforge or gemcutter
+  sudo gem install garlic
+  
+  # from github
+  sudo gem install ianwhite-garlic --source=http://gems.github.com
 
 (if you want the very latest version)
 
-&lt;pre&gt;
-    git clone git://github.com/ianwhite/garlic
-    cd garlic
-    rake package
-    sudo gem install pkg/garlic-&lt;code&gt;*&lt;/code&gt;.gem
-&lt;/pre&gt;
+  git clone git://github.com/ianwhite/garlic
+  cd garlic
+  rake package
+  sudo gem install pkg/garlic-&lt;code&gt;*&lt;/code&gt;.gem
+
+== Example
 
-h2. Example
+To see garlic in action, download resources_controller_, a rails plugin that uses garlic for CI.
 
-To see garlic in action, download response_for, a rails plugin that uses
-garlic for CI.
+  git clone git://github.com/ianwhite/resources_controller 
 
-&lt;pre&gt;
-    git clone git://github.com/ianwhite/response_for 
-&lt;/pre&gt;
 
 run garlic
  
-&lt;pre&gt;
-    garlic all
-&lt;/pre&gt;
+  garlic all
 
-This will clone all the required git repos (done only once), set up the target
-railses (done once), then run the targets.
+This will clone all the required git repos (done only once), set up the target railses (done once), then run the targets.
 
-h3. Once you've made some changes
+=== Once you've committed some changes
 
 You can prepare and run all the targets again (without fetching remote repos) by doing
 
-&lt;pre&gt;
-    garlic
-&lt;/pre&gt;
+  garlic
  
 This will prepare all the targets, using the current HEAD of the repos, and run the
 CI task again.
 
-h3. Specifying particular targets
+=== Specifying particular targets
 
-If you just want to run against a particular target or targets, you can use the TARGET or TARGETS
-env var.
+If you just want to run against a particular target or targets, you can use the -t option,
+or if using Rake, the TARGET or TARGETS env var.
 
-&lt;pre&gt;
-    garlic -t edge
-&lt;/pre&gt;
+  garlic -t edge
 
-h2. Running Shell commands across multiple targets
+== Running Shell commands across multiple targets
 
 Check dis out
 
-&lt;pre&gt;
-    garlic shell  # &quot;Example output&quot;:http://gist.github.com/28795
-&lt;/pre&gt;
+  garlic shell  # {Example output}[http://gist.github.com/28795]
   
 You can pipe any thing into garlic shell and it will execute across all of your garlic targets
 
-h2. Rake tasks
+== Rake tasks
 
 If you prefer to use garlic via rake tasks, then just require 'garlic/tasks' and you'll get a bunch of em.
 Once required, do rake -T to see descriptions.
 
-h2. garlic workflow shell commands
+== garlic workflow shell commands
 
 If you add the following line to your .profile
 
-&lt;pre&gt;
-    source `gem environment gemdir`/gems/ianwhite-garlic-&lt;code&gt;*&lt;/code&gt;/sh/garlic.sh
-&lt;/pre&gt;
+  source `garlic --path`/sh/garlic.sh
   
 Then you'll get these 4 new shell commands:
 
-&lt;pre&gt;
-    gcd [target]    cds into the specified target working repo
-    gcdp [target]   cds into the specified target plugin in the working repo
-    gup             cds back up to the garlic'd repo from within a working path
-    gpush [branch]  from within a working repo, pushes changes back to the local garlic target, and resets
-                    local changes in that target to HEAD.
-&lt;/pre&gt;
+  gcd [target]    cds into the specified target working repo
+  gcdp [target]   cds into the specified target plugin in the working repo
+  gup             cds back up to the garlic'd repo from within a working path
+  gpush [branch]  from within a working repo, pushes changes back to the local garlic target, and resets
+                  local changes in that target to HEAD.
                   
 This means you might have a workflow as follows (example is for a plugin):
 
-&lt;pre&gt;
-    # run garlic, see probs in '2-2-stable'
-    
-    gcdp 2-2  # =&gt; takes you into the working repo in the '2-2-stable' target
-    
-    # fix the changes, make some commits
-    
-    gpush     # =&gt; pushes the changes back to the enclosing garlic'd repo
-    gup       # =&gt; go back up there
-    garlic    # =&gt; rerun garlic to see how the changes affect the other targets
-&lt;/pre&gt;
+  # run garlic, see probs in '2-2-stable'
+  
+  gcdp 2-2  # =&gt; takes you into the working repo in the '2-2-stable' target
+  
+  # fix the changes, make some commits
+  
+  gpush     # =&gt; pushes the changes back to the enclosing garlic'd repo
+  gup       # =&gt; go back up there
+  garlic    # =&gt; rerun garlic to see how the changes affect the other targets
 
-h2. Lend a hand
+== Lend a hand
 
 This is an early release, so there is plenty of scope for changes and improvement
 If you want to lend a hand, get in touch.
@@ -153,7 +135,7 @@ If you want to lend a hand, get in touch.
 (c) Ian White 2008-2009 - ian.w.white@gmail.com
 MIT Licence
 
-h2. Lent a hand
+== Lent a hand
 
 Thanks very much to:
 </diff>
      <filename>README.textile</filename>
    </modified>
    <modified>
      <diff>@@ -8,47 +8,48 @@ $LOAD_PATH.unshift File.dirname(__FILE__) + '/lib'
 
 require 'garlic'
 
-spec = Gem::Specification.new do |s|
-  s.name          = &quot;garlic&quot;
-  s.version       = Garlic::Version::String
-  s.summary       = &quot;Set of commands/rake-tasks for CI against multiple version of rails/deps.&quot;
-  s.description   = &quot;Set of commands/rake-tasks for CI against multiple version of rails/deps.&quot;
-  s.author        = &quot;Ian White&quot;
-  s.email         = &quot;ian.w.white@gmail.com&quot;
-  s.homepage      = &quot;http://github.com/ianwhite/garlic/tree&quot;
-  s.has_rdoc      = true
-  s.rdoc_options &lt;&lt; &quot;--title&quot; &lt;&lt; &quot;Garlic&quot; &lt;&lt; &quot;--line-numbers&quot;
-  s.test_files    = FileList[&quot;spec/**/*_spec.rb&quot;]
-  s.files         = FileList[
-    &quot;lib/**/*.rb&quot;, &quot;templates/*.rb&quot;, &quot;bin/*&quot;, &quot;sh/*&quot;,
-    &quot;License.txt&quot;, &quot;README.textile&quot;, &quot;Todo.txt&quot;, &quot;History.txt&quot;
-  ]
-  s.executables   = [&quot;garlic&quot;]
-end
+begin
+  require 'jeweler'
+  
+  Jeweler::Tasks.new do |s|
+    s.name = &quot;garlic&quot;
+    s.version = Garlic::Version::String
+    s.summary = &quot;Test your project across multiple versions of rails/dependencies&quot;
+    s.description = &quot;CI tool to test your project across multiple versions of rails/dependencies&quot;
+    s.email = &quot;ian.w.white@gmail.com&quot;
+    s.homepage = &quot;http://github.com/ianwhite/garlic&quot;
+    s.authors = [&quot;Ian White&quot;]
+    s.rubyforge_project = 'garlic'
+  end
+  
+  Jeweler::GemcutterTasks.new
 
-Rake::GemPackageTask.new(spec) do |p|
-  p.gem_spec = spec
-  p.need_tar = true
-  p.need_zip = true
+  Jeweler::RubyforgeTasks.new do |rubyforge|
+    rubyforge.doc_task = &quot;rdoc&quot;
+  end
+  
+rescue LoadError
+  puts &quot;Jeweler not available for gem tasks. Install it with: sudo gem install jeweler&quot;
 end
 
-desc &quot;Generate garlic.gemspec file&quot;
-task :build do
-  File.open('garlic.gemspec', 'w') { |f|
-    f.write spec.to_ruby
-  }
+begin
+  require 'hanna/rdoctask'
+rescue LoadError
+end  
+
+Rake::RDocTask.new(:doc) do |d|
+  d.options &lt;&lt; '--all'
+  d.rdoc_dir = 'doc'
+  d.main     = 'README.textile'
+  d.title    = &quot;garlic API Docs&quot;
+  d.rdoc_files.include('README.textile', 'History.txt', 'License.txt', 'Todo.txt', 'VERSION', 'lib/**/*.rb')
 end
+task :rdoc =&gt; :doc
 
-desc &quot;Run the specs under spec&quot;
-Spec::Rake::SpecTask.new do |t|
-  t.spec_files = FileList['spec/**/*_spec.rb']
-  t.spec_opts &lt;&lt; &quot;-c&quot;
+Spec::Rake::SpecTask.new(:spec) do |t|
+  t.warning = true
 end
+task :default =&gt; :spec
+
+
 
-desc &quot;Generate RCov reports&quot;
-Spec::Rake::SpecTask.new(:rcov) do |t|
-  t.libs &lt;&lt; 'lib'
-  t.spec_files = FileList['spec/**/*_spec.rb']
-  t.rcov = true
-  t.rcov_opts = ['--exclude', 'spec', '--exclude', 'gems']
-end
\ No newline at end of file</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -39,10 +39,14 @@ GetoptLong.new(
   ['--verbose', '-v', GetoptLong::NO_ARGUMENT],
   ['--targets', '-t', GetoptLong::REQUIRED_ARGUMENT],
   ['--config', '-c', GetoptLong::REQUIRED_ARGUMENT],
-  ['--backtrace', GetoptLong::NO_ARGUMENT]
+  ['--backtrace', GetoptLong::NO_ARGUMENT],
+  ['--path', GetoptLong::NO_ARGUMENT],
+  ['--version', GetoptLong::NO_ARGUMENT]
   ).each do |opt, arg|
   case opt
   when '--help' then STDOUT &lt;&lt; HELP; exit true
+  when '--path' then puts File.dirname(File.dirname(File.expand_path(__FILE__))); exit true
+  when '--version' then puts Garlic::Version::String; exit true
   when '--verbose' then @verbose = true
   when '--config' then @config_file = arg
   when '--targets' then @run_targets = arg</diff>
      <filename>bin/garlic</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,6 @@
+# Generated by jeweler
+# DO NOT EDIT THIS FILE
+# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
 # -*- encoding: utf-8 -*-
 
 Gem::Specification.new do |s|
@@ -6,23 +9,54 @@ Gem::Specification.new do |s|
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Ian White&quot;]
-  s.date = %q{2009-06-27}
+  s.date = %q{2009-10-05}
   s.default_executable = %q{garlic}
-  s.description = %q{Set of commands/rake-tasks for CI against multiple version of rails/deps.}
+  s.description = %q{CI tool to test your project across multiple versions of rails/dependencies}
   s.email = %q{ian.w.white@gmail.com}
   s.executables = [&quot;garlic&quot;]
-  s.files = [&quot;lib/garlic/configurator.rb&quot;, &quot;lib/garlic/generator.rb&quot;, &quot;lib/garlic/repo.rb&quot;, &quot;lib/garlic/session.rb&quot;, &quot;lib/garlic/shell.rb&quot;, &quot;lib/garlic/target.rb&quot;, &quot;lib/garlic/tasks.rb&quot;, &quot;lib/garlic.rb&quot;, &quot;lib/tabtab_definitions/garlic.rb&quot;, &quot;templates/default.rb&quot;, &quot;templates/rspec.rb&quot;, &quot;templates/shoulda.rb&quot;, &quot;bin/garlic&quot;, &quot;sh/garlic.sh&quot;, &quot;License.txt&quot;, &quot;README.textile&quot;, &quot;Todo.txt&quot;, &quot;History.txt&quot;, &quot;spec/garlic/repo_spec.rb&quot;]
-  s.has_rdoc = true
-  s.homepage = %q{http://github.com/ianwhite/garlic/tree}
-  s.rdoc_options = [&quot;--title&quot;, &quot;Garlic&quot;, &quot;--line-numbers&quot;]
+  s.extra_rdoc_files = [
+    &quot;README.textile&quot;
+  ]
+  s.files = [
+    &quot;.gitignore&quot;,
+     &quot;History.txt&quot;,
+     &quot;License.txt&quot;,
+     &quot;README.textile&quot;,
+     &quot;Rakefile&quot;,
+     &quot;Todo.txt&quot;,
+     &quot;VERSION&quot;,
+     &quot;bin/garlic&quot;,
+     &quot;garlic.gemspec&quot;,
+     &quot;lib/garlic.rb&quot;,
+     &quot;lib/garlic/configurator.rb&quot;,
+     &quot;lib/garlic/generator.rb&quot;,
+     &quot;lib/garlic/repo.rb&quot;,
+     &quot;lib/garlic/session.rb&quot;,
+     &quot;lib/garlic/shell.rb&quot;,
+     &quot;lib/garlic/target.rb&quot;,
+     &quot;lib/garlic/tasks.rb&quot;,
+     &quot;lib/tabtab_definitions/garlic.rb&quot;,
+     &quot;sh/garlic.sh&quot;,
+     &quot;spec/garlic/repo_spec.rb&quot;,
+     &quot;spec/spec_helper.rb&quot;,
+     &quot;templates/default.rb&quot;,
+     &quot;templates/rspec.rb&quot;,
+     &quot;templates/shoulda.rb&quot;
+  ]
+  s.homepage = %q{http://github.com/ianwhite/garlic}
+  s.rdoc_options = [&quot;--charset=UTF-8&quot;]
   s.require_paths = [&quot;lib&quot;]
-  s.rubygems_version = %q{1.3.1}
-  s.summary = %q{Set of commands/rake-tasks for CI against multiple version of rails/deps.}
-  s.test_files = [&quot;spec/garlic/repo_spec.rb&quot;]
+  s.rubyforge_project = %q{garlic}
+  s.rubygems_version = %q{1.3.4}
+  s.summary = %q{Test your project across multiple versions of rails/dependencies}
+  s.test_files = [
+    &quot;spec/garlic/repo_spec.rb&quot;,
+     &quot;spec/spec_helper.rb&quot;
+  ]
 
   if s.respond_to? :specification_version then
     current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
-    s.specification_version = 2
+    s.specification_version = 3
 
     if Gem::Version.new(Gem::RubyGemsVersion) &gt;= Gem::Version.new('1.2.0') then
     else</diff>
      <filename>garlic.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -9,11 +9,8 @@ module Garlic
   include Generator
   
   module Version
-    Major = 0
-    Minor = 1
-    Tiny  = 9
-    
-    String = [Major, Minor, Tiny].join('.')
+    String = File.read(File.dirname(File.dirname(__FILE__)) + '/VERSION').strip
+    Major, Minor, Patch = String.split('.').map{|i| i.to_i}
   end
   
   # return the current garlic session</diff>
      <filename>lib/garlic.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,5 @@
+require 'fileutils'
+
 module Garlic
   # generate a garlic config file
   module Generator</diff>
      <filename>lib/garlic/generator.rb</filename>
    </modified>
    <modified>
      <diff>@@ -8,10 +8,10 @@ garlic do
   repo &quot;rails&quot;, :url =&gt; &quot;git://github.com/rails/rails&quot;
   
   # target railses
-  ['origin/master', 'origin/2-2-stable', 'origin/2-1-stable', 'origin/2-0-stable'].each do |rails|
-    
+  ['master', '2-3-stable', '2-2-stable', '2-1-stable', '2-0-stable'].each do |rails|
+
     # declare how to prepare, and run each CI target
-    target &quot;Rails: \#{rails}&quot;, :tree_ish =&gt; rails do
+    target rails, :tree_ish =&gt; &quot;origin/#{rails}&quot; do
       prepare do
         plugin &quot;#{plugin}&quot;, :clone =&gt; true # so we can work in targets
       end</diff>
      <filename>templates/default.rb</filename>
    </modified>
    <modified>
      <diff>@@ -10,10 +10,10 @@ garlic do
   repo &quot;rspec-rails&quot;, :url =&gt; &quot;git://github.com/dchelimsky/rspec-rails&quot;
   
   # target railses
-  ['origin/master', 'origin/2-2-stable', 'origin/2-1-stable', 'origin/2-0-stable'].each do |rails|
-    
+  ['master', '2-3-stable', '2-2-stable', '2-1-stable', '2-0-stable'].each do |rails|
+
     # declare how to prepare, and run each CI target
-    target &quot;Rails: \#{rails}&quot;, :tree_ish =&gt; rails do
+    target rails, :tree_ish =&gt; &quot;origin/#{rails}&quot; do
       prepare do
         plugin &quot;#{plugin}&quot;, :clone =&gt; true # so we can work in targets
         plugin &quot;rspec&quot;</diff>
      <filename>templates/rspec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -9,10 +9,10 @@ garlic do
   repo &quot;shoulda&quot;, :url =&gt; &quot;git://github.com/thoughtbot/shoulda&quot;
   
   # target railses
-  ['origin/master', 'origin/2-2-stable', 'origin/2-1-stable', 'origin/2-0-stable'].each do |rails|
-    
+  ['master', '2-3-stable', '2-2-stable', '2-1-stable', '2-0-stable'].each do |rails|
+
     # declare how to prepare, and run each CI target
-    target &quot;Rails: \#{rails}&quot;, :tree_ish =&gt; rails do
+    target rails, :tree_ish =&gt; &quot;origin/#{rails}&quot; do
       prepare do
         plugin &quot;#{plugin}&quot;, :clone =&gt; true # so we can work in targets
         plugin &quot;shoulda&quot;</diff>
      <filename>templates/shoulda.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0812d0ca6febdb6dae39f7810742afd4dced1be8</id>
    </parent>
  </parents>
  <author>
    <name>Ian White</name>
    <email>ian.w.white@gmail.com</email>
  </author>
  <url>http://github.com/ianwhite/garlic/commit/a489c92cd30505c6c7913b06922aaf75ab668ab2</url>
  <id>a489c92cd30505c6c7913b06922aaf75ab668ab2</id>
  <committed-date>2009-10-05T03:43:33-07:00</committed-date>
  <authored-date>2009-10-05T03:43:33-07:00</authored-date>
  <message>garlic gem now available on gemcutter and rubyforge</message>
  <tree>629f3cc3541bd63f9f5d831832a08e21b9780bba</tree>
  <committer>
    <name>Ian White</name>
    <email>ian.w.white@gmail.com</email>
  </committer>
</commit>
