<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,17 +1,17 @@
-h2. GemTools
+== GemTools
 
 http://github.com/UnderpantsGnome/gem_tools-gem/wikis
 
-h3. DESCRIPTION:
+=== DESCRIPTION:
 
 The gem verison of my lightweight tool to manage gems using a config file, 
 similar to GemInstaller.
 
-h3. FEATURES/PROBLEMS:
+=== FEATURES/PROBLEMS:
 
 Doesn't yet work in Windows
 
-h3. SYNOPSIS:
+=== SYNOPSIS:
 
 I use this to manage gem versions in my apps, it has a rake task to install gems 
 and a load utility to load them on startup.
@@ -58,20 +58,20 @@ gem_command: 'jruby -S gem'
     :require_name: 'rfeedparser'
 &lt;/pre&gt;&lt;/code&gt;
 
-h3. REQUIREMENTS:
+=== REQUIREMENTS:
 
 None
 
-h3. INSTALL:
+=== INSTALL:
 
 sudo gem install gem_tools
 
-h3. TODO
+=== TODO
 
 * Write the tests/specs
 * Make it work in Windows
 
-h3. LICENSE:
+=== LICENSE:
 
 (The MIT License)
 </diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -58,7 +58,6 @@ $hoe = Hoe.new(GEM_NAME, VERS) do |p|
   p.rubyforge_name = RUBYFORGE_PROJECT if RUBYFORGE_PROJECT
   p.test_globs = [&quot;test/**/test_*.rb&quot;]
   p.clean_globs |= ['**/.*.sw?', '*.gem', '.config', '**/.DS_Store']  #An array of file patterns to delete on clean.
-  p.bin_flies = ['gemtools']
 
   # == Optional
   p.changes = p.paragraphs_of(&quot;History.txt&quot;, 0..1).join(&quot;\n\n&quot;)</diff>
      <filename>config/hoe.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,138 @@
-&lt;html&gt;
-	&lt;head&gt;
-		&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;
-		&lt;title&gt;gem_tools&lt;/title&gt;
-		
-	&lt;/head&gt;
-	&lt;body id=&quot;body&quot;&gt;
-		&lt;p&gt;This page has not yet been created for RubyGem &lt;code&gt;gem_tools&lt;/code&gt;&lt;/p&gt;
-		&lt;p&gt;To the developer: To generate it, update website/index.txt and run the rake task &lt;code&gt;website&lt;/code&gt; to generate this &lt;code&gt;index.html&lt;/code&gt; file.&lt;/p&gt;
-	&lt;/body&gt;
-&lt;/html&gt;
\ No newline at end of file
+&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;
+&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
+&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt;
+&lt;head&gt;
+  &lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheets/screen.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
+  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
+  &lt;title&gt;
+      gem_tools
+  &lt;/title&gt;
+  &lt;script src=&quot;javascripts/rounded_corners_lite.inc.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
+&lt;style&gt;
+
+&lt;/style&gt;
+  &lt;script type=&quot;text/javascript&quot;&gt;
+    window.onload = function() {
+      settings = {
+          tl: { radius: 10 },
+          tr: { radius: 10 },
+          bl: { radius: 10 },
+          br: { radius: 10 },
+          antiAlias: true,
+          autoPad: true,
+          validTags: [&quot;div&quot;]
+      }
+      var versionBox = new curvyCorners(settings, document.getElementById(&quot;version&quot;));
+      versionBox.applyCornersToAll();
+    }
+  &lt;/script&gt;
+&lt;/head&gt;
+&lt;body&gt;
+&lt;div id=&quot;main&quot;&gt;
+
+    &lt;h1&gt;gem_tools&lt;/h1&gt;
+    &lt;div id=&quot;version&quot; class=&quot;clickable&quot; onclick='document.location = &quot;http://rubyforge.org/projects/gem_tools&quot;; return false'&gt;
+      &lt;p&gt;Get Version&lt;/p&gt;
+      &lt;a href=&quot;http://rubyforge.org/projects/gem_tools&quot; class=&quot;numbers&quot;&gt;0.0.1&lt;/a&gt;
+    &lt;/div&gt;
+    &lt;h2&gt;What&lt;/h2&gt;
+
+
+	&lt;p&gt;The gem verison of my lightweight tool to manage gems using a config file, 
+similar to GemInstaller.&lt;/p&gt;
+
+
+	&lt;h2&gt;Installing&lt;/h2&gt;
+
+
+	&lt;p&gt;&lt;pre class='syntax'&gt;&lt;span class=&quot;ident&quot;&gt;sudo&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;gem&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;gem_tools&lt;/span&gt;&lt;/pre&gt;&lt;/p&gt;
+
+
+	&lt;h2&gt;The basics&lt;/h2&gt;
+
+
+	&lt;p&gt;I use this to manage gem versions in my apps, it has a rake task to install gems 
+and a load utility to load them on startup.&lt;/p&gt;
+
+
+Install or update required gems
+&lt;pre&gt;&lt;code&gt;
+gem_tools install
+&lt;/pre&gt;&lt;/code&gt;
+
+Make sure they are loaded with the right versions during startup, by adding the 
+following to your script or environment.rb (Rails)
+&lt;pre&gt;&lt;code&gt;
+require 'gem_tools'
+GemTools.load_gems
+&lt;/pre&gt;&lt;/code&gt;
+
+The config file looks like
+&lt;pre&gt;&lt;code&gt;
+# These are optional
+:source: http://local_mirror.example.com
+gem_command: 'jruby -S gem'
+:gems:
+  - :name: mongrel
+    :version: &quot;1.0&quot; 
+    # this gem has a specfic source URL
+    :source: 'http://mongrel.rubyforge.org/releases'
+
+  - :name: hpricot_scrub
+    :version: '0.3.3'
+    # this tells us to load not just install
+    :load: true 
+
+  - :name: postgres
+    :version: '0.7.1'
+    :load: true
+    # any extra config that needs to be passed to gem install
+    :config: '--with-pgsql-include-dir=/usr/local/pgsql/include 
+      --with-pgsql-lib-dir=/usr/local/pgsql/lib' 
+
+  - :name: rfeedparser_ictv
+    :version: '0.9.932'
+    :load: true
+    # this one has a different load name than the gem name (not a normal need)
+    :require_name: 'rfeedparser'
+&lt;/pre&gt;&lt;/code&gt;
+
+	&lt;p&gt;You can fetch the source from either:&lt;/p&gt;
+
+
+&lt;pre&gt;git clone git://rubyforge.org/gem_tools.git&lt;/pre&gt;
+
+	&lt;ul&gt;
+	&lt;li&gt;github: &lt;a href=&quot;http://github.com/UnderpantsGnome/gem_tools/tree/master&quot;&gt;http://github.com/UnderpantsGnome/gem_tools/tree/master&lt;/a&gt;&lt;/li&gt;
+	&lt;/ul&gt;
+
+
+&lt;pre&gt;git clone git://github.com/UnderpantsGnome/gem_tools.git&lt;/pre&gt;
+
+	&lt;h3&gt;Build and test instructions&lt;/h3&gt;
+
+
+&lt;pre&gt;cd gem_tools
+rake test
+rake install_gem&lt;/pre&gt;
+
+	&lt;h2&gt;License&lt;/h2&gt;
+
+
+	&lt;p&gt;This code is free to use under the terms of the &lt;span class=&quot;caps&quot;&gt;MIT&lt;/span&gt; license.&lt;/p&gt;
+
+
+	&lt;h2&gt;Contact&lt;/h2&gt;
+
+
+	&lt;p&gt;Comments are welcome. Send an email to &lt;a href=&quot;mailto:michael@underpantsgnome.com&quot;&gt;Michael Moen&lt;/a&gt; via the &lt;a href=&quot;http://groups.google.com/group/gem_tools&quot;&gt;forum&lt;/a&gt;&lt;/p&gt;
+    &lt;p class=&quot;coda&quot;&gt;
+      &lt;a href=&quot;michael@underpantsgnome.com&quot;&gt;FIXME full name&lt;/a&gt;, 4th August 2008&lt;br&gt;
+      Theme extended from &lt;a href=&quot;http://rb2js.rubyforge.org/&quot;&gt;Paul Battley&lt;/a&gt;
+    &lt;/p&gt;
+&lt;/div&gt;
+
+&lt;!-- insert site tracking codes here, like Google Urchin --&gt;
+
+&lt;/body&gt;
+&lt;/html&gt;</diff>
      <filename>website/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -2,76 +2,80 @@ h1. gem_tools
 
 h2. What
 
+The gem verison of my lightweight tool to manage gems using a config file, 
+similar to GemInstaller.
+
 h2. Installing
 
 &lt;pre syntax=&quot;ruby&quot;&gt;sudo gem install gem_tools&lt;/pre&gt;
 
 h2. The basics
 
+I use this to manage gem versions in my apps, it has a rake task to install gems 
+and a load utility to load them on startup.
+
+Install or update required gems
+&lt;pre&gt;&lt;code&gt;
+gem_tools install
+&lt;/pre&gt;&lt;/code&gt;
+
+Make sure they are loaded with the right versions during startup, by adding the 
+following to your script or environment.rb (Rails)
+&lt;pre&gt;&lt;code&gt;
+require 'gem_tools'
+GemTools.load_gems
+&lt;/pre&gt;&lt;/code&gt;
+
+The config file looks like
+&lt;pre&gt;&lt;code&gt;
+# These are optional
+:source: http://local_mirror.example.com
+gem_command: 'jruby -S gem'
+:gems:
+  - :name: mongrel
+    :version: &quot;1.0&quot;
+    # this gem has a specfic source URL
+    :source: 'http://mongrel.rubyforge.org/releases'
+
+  - :name: hpricot_scrub
+    :version: '0.3.3'
+    # this tells us to load not just install
+    :load: true 
+
+  - :name: postgres
+    :version: '0.7.1'
+    :load: true
+    # any extra config that needs to be passed to gem install
+    :config: '--with-pgsql-include-dir=/usr/local/pgsql/include 
+      --with-pgsql-lib-dir=/usr/local/pgsql/lib' 
+
+  - :name: rfeedparser_ictv
+    :version: '0.9.932'
+    :load: true
+    # this one has a different load name than the gem name (not a normal need)
+    :require_name: 'rfeedparser'
+&lt;/pre&gt;&lt;/code&gt;
 
-h2. Demonstration of usage
-
-
-
-h2. Forum
-
-&quot;http://groups.google.com/group/gem_tools&quot;:http://groups.google.com/group/gem_tools
-
-TODO - create Google Group - gem_tools
-
-h2. How to submit patches
-
-Read the &quot;8 steps for fixing other people's code&quot;:http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/ and for section &quot;8b: Submit patch to Google Groups&quot;:http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/#8b-google-groups, use the Google Group above.
-
-TODO - pick SVN or Git instructions
-
-The trunk repository is &lt;code&gt;svn://rubyforge.org/var/svn/gem_tools/trunk&lt;/code&gt; for anonymous access.
-
-OOOORRRR
 
 You can fetch the source from either:
 
-&lt;% if rubyforge_project_id %&gt;
-
-* rubyforge: &quot;http://rubyforge.org/scm/?group_id=&lt;%= rubyforge_project_id %&gt;&quot;:http://rubyforge.org/scm/?group_id=&lt;%= rubyforge_project_id %&gt;
-
 &lt;pre&gt;git clone git://rubyforge.org/gem_tools.git&lt;/pre&gt;
 
-&lt;% else %&gt;
-
-* rubyforge: MISSING IN ACTION
-
-TODO - You can not created a RubyForge project, OR have not run &lt;code&gt;rubyforge config&lt;/code&gt;
-yet to refresh your local rubyforge data with this projects' id information.
-
-When you do this, this message will magically disappear!
-
-Or you can hack website/index.txt and make it all go away!!
-
-&lt;% end %&gt;
-
 * github: &quot;http://github.com/UnderpantsGnome/gem_tools/tree/master&quot;:http://github.com/UnderpantsGnome/gem_tools/tree/master
 
 &lt;pre&gt;git clone git://github.com/UnderpantsGnome/gem_tools.git&lt;/pre&gt;
 
-
-
-* gitorious: &quot;git://gitorious.org/gem_tools/mainline.git&quot;:git://gitorious.org/gem_tools/mainline.git
-
-&lt;pre&gt;git clone git://gitorious.org/gem_tools/mainline.git&lt;/pre&gt;
-
 h3. Build and test instructions
 
 &lt;pre&gt;cd gem_tools
 rake test
 rake install_gem&lt;/pre&gt;
 
-
 h2. License
 
 This code is free to use under the terms of the MIT license. 
 
 h2. Contact
 
-Comments are welcome. Send an email to &quot;FIXME full name&quot;:mailto:michael@underpantsgnome.com via the &quot;forum&quot;:http://groups.google.com/group/gem_tools
+Comments are welcome. Send an email to &quot;Michael Moen&quot;:mailto:michael@underpantsgnome.com via the &quot;forum&quot;:http://groups.google.com/group/gem_tools
 </diff>
      <filename>website/index.txt</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>99842b6443e7398e00d3f6cfa975ff6f5b4dea97</id>
    </parent>
  </parents>
  <author>
    <name>Michael Moen</name>
    <email>michael@underpantsgnome.com</email>
  </author>
  <url>http://github.com/UnderpantsGnome/gem_tools-gem/commit/e191e249b5c9142434a8348d9f3a1405b2d2748b</url>
  <id>e191e249b5c9142434a8348d9f3a1405b2d2748b</id>
  <committed-date>2008-08-06T11:08:59-07:00</committed-date>
  <authored-date>2008-08-06T11:08:59-07:00</authored-date>
  <message>Publish versin 0.0.1</message>
  <tree>4ab14ed01d594a3dee104551d0cfe6dfca0b021a</tree>
  <committer>
    <name>Michael Moen</name>
    <email>michael@underpantsgnome.com</email>
  </committer>
</commit>
