<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -10,7 +10,11 @@ Add your Lighthouse project settings to your repo's git config.
 
 = Usage
 
-lh-branch [ticket_id]: Creates a branch based on the ticket name.
+If ticket_id is not given, it will be determined by the current branch.
+This gem also comes with lhb, a shorter version of lh-branch
+
+lh-branch [ticket_id] ([remote_name]): Creates a branch based on the ticket name.
+If remote_name is given, the branch will be pushed to the remote.
     lh-branch 1 #=&gt; git checkout -b 1-ticket-title
 
 lh-branch push [ticket_id] [remote_name]: Pushes the ticket's branch to the named remote.
@@ -25,14 +29,16 @@ lh-branch merge [ticket_id]: Merges the ticket's branch with the current branch.
 lh-branch checkout [ticket_id]: Checks out the ticket's branch, making it the current branch.
     lh-branch checkout 1 #=&gt; git checkout 1-ticket-title
 
-lh-branch delete [ticket_id]: Deletes the ticket's branch.
+lh-branch delete [ticket_id] ([remote_name]): Deletes the ticket's branch.
+If remote_name is given, the branch will also be deleted on remote.
     lh-branch delete 1 #=&gt; git branch -d 1-ticket-title
 
 lh-branch delete_remote [ticket_id] [remote_name]: Deletes the ticket's branch on the remote server.
     lh-branch delete_remote 1 origin #=&gt; git push origin :1-ticket-title
 
-lh-branch commit [ticket_id] [message]: Creates a commit that references the ticket
-    lh-branch commit 1 &quot;Made some changes&quot; #=&gt; git commit -a -m &quot;Made some changes\n\n[#1]&quot;
+lh-branch update [ticket_id] [message] ([extra]): Creates a commit that references the ticket
+Extra is any extra lighthouse commands
+    lh-branch commit 1 &quot;Made some changes&quot; #=&gt; git commit -a -m &quot;Made some changes\n\n[#1 tagged:'branch:1-ticket-title']&quot;
 
 lh-branch resolve [ticket_id] [message]: Creates a commit that will mark the ticket resolved.
     lh-branch resolve 1 &quot;Fixed the bug.&quot; #=&gt; git commit -a -m &quot;Fixed the bug\n\n[#1 state:resolved]&quot;</diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -60,7 +60,7 @@ class LighthouseBranch
   end
   
   def self.usage
-    puts &quot;Usage:&quot;
+    puts &quot;If ticket_id is not supplied, the ticket will be determined by the current branch name.&quot;
     puts &quot;lh-branch [ticket_id] ([remote_name])&quot;
     puts &quot;lh-branch push [ticket_id] [remote_name]&quot;
     puts &quot;lh-branch pull [ticket_id] [remote_name]&quot;</diff>
      <filename>lib/lighthouse_branch.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,14 +2,13 @@
 
 Gem::Specification.new do |s|
   s.name = %q{lighthouse_branch}
-  s.version = &quot;1.0.0&quot;
+  s.version = &quot;1.1.0&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Matt Pruitt&quot;]
-  s.date = %q{2009-06-20}
-  s.default_executable = %q{lh-branch}
+  s.date = %q{2009-06-23}
   s.email = %q{guitsaru@gmail.com}
-  s.executables = [&quot;lh-branch&quot;]
+  s.executables = [&quot;lh-branch&quot;, &quot;lhb&quot;]
   s.extra_rdoc_files = [
     &quot;LICENSE&quot;,
      &quot;README.rdoc&quot;
@@ -22,10 +21,30 @@ Gem::Specification.new do |s|
      &quot;Rakefile&quot;,
      &quot;VERSION&quot;,
      &quot;bin/lh-branch&quot;,
+     &quot;bin/lhb&quot;,
      &quot;lib/lighthouse_branch.rb&quot;,
+     &quot;lib/lighthouse_branch/command/base.rb&quot;,
+     &quot;lib/lighthouse_branch/commands/branch.rb&quot;,
+     &quot;lib/lighthouse_branch/commands/checkout.rb&quot;,
+     &quot;lib/lighthouse_branch/commands/commit.rb&quot;,
+     &quot;lib/lighthouse_branch/commands/delete.rb&quot;,
+     &quot;lib/lighthouse_branch/commands/merge.rb&quot;,
+     &quot;lib/lighthouse_branch/commands/pull.rb&quot;,
+     &quot;lib/lighthouse_branch/commands/push.rb&quot;,
+     &quot;lib/lighthouse_branch/commands/resolve.rb&quot;,
+     &quot;lib/lighthouse_branch/commands/update.rb&quot;,
      &quot;lighthouse_branch.gemspec&quot;,
-     &quot;test/test_helper.rb&quot;,
-     &quot;test/test_lighthouse_branch.rb&quot;
+     &quot;test/command/test_base.rb&quot;,
+     &quot;test/commands/test_branch.rb&quot;,
+     &quot;test/commands/test_checkout.rb&quot;,
+     &quot;test/commands/test_commit.rb&quot;,
+     &quot;test/commands/test_delete.rb&quot;,
+     &quot;test/commands/test_merge.rb&quot;,
+     &quot;test/commands/test_pull.rb&quot;,
+     &quot;test/commands/test_push.rb&quot;,
+     &quot;test/commands/test_resolve.rb&quot;,
+     &quot;test/commands/test_update.rb&quot;,
+     &quot;test/test_helper.rb&quot;
   ]
   s.homepage = %q{http://github.com/guitsaru/lighthouse_branch}
   s.rdoc_options = [&quot;--charset=UTF-8&quot;]
@@ -34,8 +53,17 @@ Gem::Specification.new do |s|
   s.rubygems_version = %q{1.3.4}
   s.summary = %q{Easily manage branches based off lighthouse tickets.}
   s.test_files = [
-    &quot;test/test_helper.rb&quot;,
-     &quot;test/test_lighthouse_branch.rb&quot;
+    &quot;test/command/test_base.rb&quot;,
+     &quot;test/commands/test_branch.rb&quot;,
+     &quot;test/commands/test_checkout.rb&quot;,
+     &quot;test/commands/test_commit.rb&quot;,
+     &quot;test/commands/test_delete.rb&quot;,
+     &quot;test/commands/test_merge.rb&quot;,
+     &quot;test/commands/test_pull.rb&quot;,
+     &quot;test/commands/test_push.rb&quot;,
+     &quot;test/commands/test_resolve.rb&quot;,
+     &quot;test/commands/test_update.rb&quot;,
+     &quot;test/test_helper.rb&quot;
   ]
 
   if s.respond_to? :specification_version then</diff>
      <filename>lighthouse_branch.gemspec</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>lib/lighthouse_branch/command.rb</filename>
    </removed>
    <removed>
      <filename>test/test_lighthouse_branch.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>401091f8ef72547fc293242cf50409efdc5cbb6f</id>
    </parent>
  </parents>
  <author>
    <name>Matt Pruitt</name>
    <email>guitsaru@gmail.com</email>
  </author>
  <url>http://github.com/guitsaru/lighthouse_branch/commit/d656b150fd3d21cb69a9d1ae2c84cc2752a467c3</url>
  <id>d656b150fd3d21cb69a9d1ae2c84cc2752a467c3</id>
  <committed-date>2009-06-23T19:14:27-07:00</committed-date>
  <authored-date>2009-06-23T19:12:58-07:00</authored-date>
  <message>Updated the readme.

[#2 tagged:'branch:2-create-command-classes']</message>
  <tree>570c18c998acf9f964e72d0147f4b5de217047c4</tree>
  <committer>
    <name>Matt Pruitt</name>
    <email>guitsaru@gmail.com</email>
  </committer>
</commit>
