<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,8 @@
+== 0.0.6 2008-09-26
+* Fix the setup routine
+* Add the missing gems.template.yml to the manifest
+* Handle a missing gems.yml better
+
 == 0.0.5 2008-09-02
 * Fix the help message
 
@@ -8,10 +13,8 @@
 * Fix the borked binary, not sure why this didn't show up previously
 
 == 0.0.2 2008-08-06
-
 * Add the bin files to the gem...:
 
 == 0.0.1 2008-08-01
-
 * Ported Rails plugin to a Gem:
   * Initial release</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -5,3 +5,4 @@ README.txt
 lib/gem_tools.rb
 lib/gem_tools/version.rb
 bin/gemtools
+config/gems.template.yml</diff>
      <filename>Manifest.txt</filename>
    </modified>
    <modified>
      <diff>@@ -33,6 +33,8 @@ Commands are:
     dryrun 
     Print out the commands that would have been run
 
+    setup
+    generate a started gems.yml
 Options are:
 BANNER
 
@@ -50,8 +52,8 @@ BANNER
   if MANDATORY_OPTIONS &amp;&amp; MANDATORY_OPTIONS.find { |option| options[option.to_sym].nil? }
     puts opts; exit
   end
-end.parse!
 
-OPTIONS = options
+  OPTIONS = opts
+end.parse!
 
 GemTools.run command</diff>
      <filename>bin/gemtools</filename>
    </modified>
    <modified>
      <diff>@@ -5,7 +5,7 @@ module GemTools
   extend self
   
   def run(cmd)
-    send(cmd.to_sym) rescue help
+    send(cmd.to_sym)# rescue help
   end
 
   def setup
@@ -43,7 +43,10 @@ module GemTools
     require 'yaml'
     require 'erb'
     config_file = find_config
-    raise 'Could not find a gems.yml, checked . and ./config' unless File.exist?(config_file)
+    unless config_file
+      puts 'Could not find a gems.yml, checked . and ./config'
+      exit 1
+    end
     YAML.load(ERB.new(File.open(config_file).read).result)
   end
 
@@ -117,6 +120,7 @@ module GemTools
       config_file = File.join(dir, 'gems.yml')
       return config_file if File.exist?(config_file)
     end
+    nil
   end
 end
   
\ No newline at end of file</diff>
      <filename>lib/gem_tools.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@ module GemTools
   module VERSION #:nodoc:
     MAJOR = 0
     MINOR = 0
-    TINY  = 5
+    TINY  = 6
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end</diff>
      <filename>lib/gem_tools/version.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7f2842da5014686f9f2ac85232ecf9c4308dcba5</id>
    </parent>
  </parents>
  <author>
    <name>Michael Moen</name>
    <email>michael@underpantsgnome.com</email>
  </author>
  <url>http://github.com/UnderpantsGnome/gem_tools-gem/commit/95b144f4947d3c00d25a7c27e9c9cf3c78d2233d</url>
  <id>95b144f4947d3c00d25a7c27e9c9cf3c78d2233d</id>
  <committed-date>2008-09-26T17:36:26-07:00</committed-date>
  <authored-date>2008-09-26T17:36:26-07:00</authored-date>
  <message>Fix the setup routine, Add the missing gems.template.yml to the manifest, Handle a missing gems.yml better</message>
  <tree>f8c0e0982f4b50f8738287c6f91241d499200dbd</tree>
  <committer>
    <name>Michael Moen</name>
    <email>michael@underpantsgnome.com</email>
  </committer>
</commit>
