<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,4 @@
 == 0.0.1 2008-08-01
 
-* 1 major enhancement:
+* Ported Rails plugin to a Gem:
   * Initial release</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-Copyright (c) 2008 FIXME full name
+Copyright (c) 2008 Michael Moen
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the</diff>
      <filename>License.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,32 +1,81 @@
-= gem_tools
+h2. GemTools
 
-* FIX (url)
+http://github.com/UnderpantsGnome/gem_tools-gem/wikis
 
-== DESCRIPTION:
+h3. DESCRIPTION:
 
-FIX (describe your package)
+The gem verison of my lightweight tool to manage gems using a config file, 
+similar to GemInstaller.
 
-== FEATURES/PROBLEMS:
+h3. FEATURES/PROBLEMS:
 
-* FIX (list of features or problems)
+Doesn't yet work in Windows
 
-== SYNOPSIS:
+h3. SYNOPSIS:
 
-  FIX (code sample of usage)
+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.
 
-== REQUIREMENTS:
+Install or update required gems
+&lt;pre&gt;&lt;code&gt;
+gem_tools install
+&lt;/pre&gt;&lt;/code&gt;
 
-* FIX (list of requirements)
+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;
 
-== INSTALL:
+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'
 
-* FIX (sudo gem install, anything else)
+  - :name: hpricot_scrub
+    :version: '0.3.3'
+    # this tells us to load not just install
+    :load: true 
 
-== LICENSE:
+  - :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;
+
+h3. REQUIREMENTS:
+
+None
+
+h3. INSTALL:
+
+sudo gem install gem_tools
+
+h3. TODO
+
+* Write the tests/specs
+* Make it work in Windows
+
+h3. LICENSE:
 
 (The MIT License)
 
-Copyright (c) 2008 FIXME full name
+Copyright (c) 2008 Michael Moen
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the</diff>
      <filename>README.txt</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>pkg/gem_tools-0.0.1.gem</filename>
    </removed>
    <removed>
      <filename>pkg/gem_tools-0.0.1.tgz</filename>
    </removed>
    <removed>
      <filename>pkg/gem_tools-0.0.1/History.txt</filename>
    </removed>
    <removed>
      <filename>pkg/gem_tools-0.0.1/License.txt</filename>
    </removed>
    <removed>
      <filename>pkg/gem_tools-0.0.1/PostInstall.txt</filename>
    </removed>
    <removed>
      <filename>pkg/gem_tools-0.0.1/README.txt</filename>
    </removed>
    <removed>
      <filename>pkg/gem_tools-0.0.1/lib/gem_tools.rb</filename>
    </removed>
    <removed>
      <filename>pkg/gem_tools-0.0.1/lib/gem_tools/version.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>7f436de93b0ef1c615b7402fd42f34a483a3eba5</id>
    </parent>
  </parents>
  <author>
    <name>Michael Moen</name>
    <email>michael@underpantsgnome.com</email>
  </author>
  <url>http://github.com/UnderpantsGnome/gem_tools-gem/commit/6db2d4bc90f87c40f75af88244a1b6c391534e40</url>
  <id>6db2d4bc90f87c40f75af88244a1b6c391534e40</id>
  <committed-date>2008-08-04T06:35:17-07:00</committed-date>
  <authored-date>2008-08-04T06:35:17-07:00</authored-date>
  <message>Fix git ignore. Update the README</message>
  <tree>5d8cffcb1f43bc0caee42ad5b751e8a06588b1cd</tree>
  <committer>
    <name>Michael Moen</name>
    <email>michael@underpantsgnome.com</email>
  </committer>
</commit>
