<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,8 @@
+== 0.0.2 2008-03-07
+
+* 1 minor enhancement:
+  * add -p/--pretend option to show what gem(s) would be edited and with what command
+
 == 0.0.1 2008-02-27
 
 * 1 major enhancement:</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -13,6 +13,7 @@ require 'optparse'
 
 OPTIONS = {
   :verbose =&gt; false,
+  :pretend =&gt; false,
   :editor =&gt; ENV['VISUAL'] || ENV['EDITOR'] || 'vi'
 }
 
@@ -24,9 +25,12 @@ Usage: #{File.basename($0)} GEM_NAME...
 
 Options are:
 BANNER
-  opts.separator &quot;&quot;
   opts.on(&quot;-e&quot;, &quot;--editor=EDITOR&quot;, String,
           &quot;The editor to open the gems with&quot;, &quot;Default: #{OPTIONS[:editor]}&quot;) { |editor| OPTIONS[:editor] = editor }
+  opts.on(&quot;-p&quot;, &quot;--pretend&quot;,
+          &quot;Shows what command would be run without running it&quot;, &quot;Turns on verbose logging&quot;, &quot;Default: #{OPTIONS[:pretend]}&quot;) { |pretend|
+            OPTIONS[:pretend] = OPTIONS[:verbose] = true
+  }
   opts.on(&quot;-v&quot;, &quot;--verbose&quot;,
           &quot;Enable verbose logging&quot;, &quot;Default: #{OPTIONS[:verbose]}&quot;) { |verbose| OPTIONS[:verbose] = true }
   opts.on(&quot;-h&quot;, &quot;--help&quot;,
@@ -79,7 +83,7 @@ if gems.size &gt; 0
   end
   cmd = &quot;#{OPTIONS[:editor]} #{paths.join(' ')}&quot;
   puts &quot;Running `#{cmd}`&quot; if OPTIONS[:verbose]
-  exec cmd
+  exec cmd unless OPTIONS[:pretend]
 else
   puts &quot;No gems found for editing&quot;
 end</diff>
      <filename>bin/gemedit</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@ module Gemedit #:nodoc:
   module VERSION #:nodoc:
     MAJOR = 0
     MINOR = 0
-    TINY  = 1
+    TINY  = 2
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end</diff>
      <filename>lib/gemedit/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -33,7 +33,7 @@
     &lt;h1&gt;Gem Editor&lt;/h1&gt;
     &lt;div id=&quot;version&quot; class=&quot;clickable&quot; onclick='document.location = &quot;http://rubyforge.org/projects/gemedit&quot;; return false'&gt;
       &lt;p&gt;Get Version&lt;/p&gt;
-      &lt;a href=&quot;http://rubyforge.org/projects/gemedit&quot; class=&quot;numbers&quot;&gt;0.0.1&lt;/a&gt;
+      &lt;a href=&quot;http://rubyforge.org/projects/gemedit&quot; class=&quot;numbers&quot;&gt;0.0.2&lt;/a&gt;
     &lt;/div&gt;
     &lt;h1&gt;&amp;#x2192; &amp;#8216;gemedit&amp;#8217;&lt;/h1&gt;
 
@@ -96,7 +96,7 @@ If you would like some basic command completion for installed gems add the follo
 
 	&lt;p&gt;Comments are welcome. Send an email to &lt;a href=&quot;mailto:lmarlow@rubyforge.org&quot;&gt;Lee Marlow&lt;/a&gt;&lt;/p&gt;
     &lt;p class=&quot;coda&quot;&gt;
-      &lt;a href=&quot;mailto:lmarlow@rubyforge.org&quot;&gt;Lee Marlow&lt;/a&gt;, 29th February 2008&lt;br&gt;
+      &lt;a href=&quot;mailto:lmarlow@rubyforge.org&quot;&gt;Lee Marlow&lt;/a&gt;, 7th March 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;</diff>
      <filename>website/index.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7fccef665fee9c9bc287d3331df2fd4f85f5020a</id>
    </parent>
  </parents>
  <author>
    <name>Lee Marlow</name>
    <email>lee.marlow@gmail.com</email>
  </author>
  <url>http://github.com/lmarlow/gemedit/commit/65bec266d543d44869fca1ef6482f0bd62a975cf</url>
  <id>65bec266d543d44869fca1ef6482f0bd62a975cf</id>
  <committed-date>2008-03-07T11:11:19-08:00</committed-date>
  <authored-date>2008-03-07T11:11:19-08:00</authored-date>
  <message>add -p/--pretend option and update to v0.0.2</message>
  <tree>27b53957d3b60660c97bcdd1e5f4a681bfd43e8c</tree>
  <committer>
    <name>Lee Marlow</name>
    <email>lee.marlow@gmail.com</email>
  </committer>
</commit>
