<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>.gitignore</filename>
    </added>
    <added>
      <filename>lib/pow.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,5 @@
-class Pow
-  class Directory &lt; Pow
+module Pow
+  class Directory &lt; Base
     include Enumerable
 
   
@@ -36,15 +36,15 @@ class Pow
       FileUtils.rmtree path
     end
     
-    alias_method :cp, :copy_to
     def copy_to(dest)
       FileUtils.cp_r(path, dest.to_s)
     end
+    alias_method :cp, :copy_to
     
-    alias_method :mv, :move_to
     def move_to(dest)
       FileUtils.mv(path, dest.to_s)
     end
+    alias_method :mv, :move_to
   
     def empty?
       children.empty?</diff>
      <filename>lib/pow/directory.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
-class Pow
-  class File &lt; Pow
+module Pow
+  class File &lt; Base
     
     # ====================
     # = Instance Methods =
@@ -33,14 +33,15 @@ class Pow
       ::File.size(path) == 0
     end
     
-    alias_method(:cp, :copy_to)
     def copy_to(dest)
       FileUtils.cp(path.to_s, dest.to_s)
     end
+    alias_method :cp, :copy_to
     
-    alias_method(:mv, :move_to)
     def move_to(dest)
       FileUtils.mv(path.to_s, dest.to_s)
     end
+    alias_method :mv, :move_to
+    
   end
 end
\ No newline at end of file</diff>
      <filename>lib/pow/file.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,132 +1,130 @@
 class PowError &lt; StandardError; end
 
 def Pow(*args, &amp;block)
-  Pow.open(*args, &amp;block)
+  Pow::Base.open(*args, &amp;block)
 end
 
-class Pow
-  attr_accessor :path
+module Pow
+  class Base
+    attr_accessor :path
 
-  # =================
-  # = Class Methods =
-  # =================
+    # =================
+    # = Class Methods =
+    # =================
 
-  def self.open(*paths, &amp;block)
-    paths.collect! {|path| path.to_s}
-    path = ::File.join(paths)) 
+    def self.open(*paths, &amp;block)
+      paths.collect! {|path| path.to_s}
+      path = ::File.join(paths)
   
-    klass = if ::File.directory?(path)
-      Directory
-    elsif ::File.file?(path)
-      File
-    else
-      self
-    end
+      klass = if ::File.directory?(path)
+        Directory
+      elsif ::File.file?(path)
+        File
+      else
+        self
+      end
   
-    klass.new(path, &amp;block)
-  end
+      klass.new(path, &amp;block)
+    end
   
-  def self.[](*paths)
-    open(*paths)
-  end
+    def self.working_directory
+      Dir.getwd
+    end
 
-  def self.working_directory
-    Dir.getwd
-  end
+    # ====================
+    # = Instance Methods =
+    # ====================
 
-  # ====================
-  # = Instance Methods =
-  # ====================
+    def initialize(path, mode=nil, &amp;block)
+      self.path = ::File.expand_path(path)
+    end
 
-  def initialize(path, mode=nil, &amp;block)
-    self.path = ::File.expand_path(path)
-  end
+    def open(mode=nil, &amp;block)
+      raise PowError, &quot;Path (#{path}) does not exist.&quot;
+    end
 
-  def to_s
-    path
-  end
+    def to_s
+      path
+    end
 
-  def [](*paths)
-    Pow.open(path, *paths)
-  end
+    def [](*paths)
+      Pow(path, *paths)
+    end
 
-  def /(name=nil)
-    Pow.open(path, name)
-  end
+    def /(name=nil)
+      self.class.open(path, name)
+    end
   
-  def ==(other)
-    other.to_s == self.to_s
-  end
+    def ==(other)
+      other.to_s == self.to_s
+    end
   
-  def eql?(other)
-    other.eql? self.to_s
-  end
+    def eql?(other)
+      other.eql? self.to_s
+    end
 
-  def =~(other)
-    name =~ other
-  end
+    def =~(other)
+      name =~ other
+    end
 
-  def name
-    ::File.basename path
-  end
+    def name
+      ::File.basename path
+    end
   
-  alias_method :exist? :exists?
-  def exists?
-    ::File.exist? path
-  end
+    def exists?
+      ::File.exist? path
+    end
+    alias_method :exist?, :exists?
   
-  def parent
-    Pow(::File(dirname))
-  end
+    def parent
+      Pow(::File.dirname(path))
+    end
 
-  def permissions=(mode)
-    mode = mode.to_s.to_i(8) # convert from octal
-    path.chmod(mode)
-  end
+    def permissions=(mode)
+      mode = mode.to_s.to_i(8) # convert from octal
+      path.chmod(mode)
+    end
 
-  def permissions
-    (&quot;%o&quot; % ::File.stat(path.to_s).mode)[2..-1].to_i # Forget about the first two numbers
-  end
+    def permissions
+      (&quot;%o&quot; % ::File.stat(path.to_s).mode)[2..-1].to_i # Forget about the first two numbers
+    end
 
-  def empty?
-    true
-  end
+    def empty?
+      true
+    end
 
-  def accessed_at
-    path.atime
-  end
+    def accessed_at
+      path.atime
+    end
 
-  def changed_at
-    path.ctime
-  end
+    def changed_at
+      path.ctime
+    end
 
-  def modified_at
-    path.mtime
-  end
+    def modified_at
+      path.mtime
+    end
 
-  #If there is a . in the name, then assume it is a file
-  def create(&amp;block)
-    name =~ /\./ ? create_file(&amp;block) : create_directory(&amp;block)
-  end
+    #If there is a . in the name, then assume it is a file
+    def create(&amp;block)
+      name =~ /\./ ? create_file(&amp;block) : create_directory(&amp;block)
+    end
   
-  def create_file(&amp;block)
-    FileUtils.mkdir_p(::File.dirname(self.to_s))
-    file = File.new(self.to_s)
-    file.open(&quot;w+&quot;, &amp;block) # Create the file
+    def create_file(&amp;block)
+      FileUtils.mkdir_p(::File.dirname(self.to_s))
+      file = File.new(self.to_s)
+      file.open(&quot;w+&quot;, &amp;block) # Create the file
     
-    file
-  end
+      file
+    end
   
-  def create_directory(&amp;block)
-    FileUtils.mkdir_p(self.to_s)
-    dir = Directory.new(self.to_s)
+    def create_directory(&amp;block)
+      FileUtils.mkdir_p(self.to_s)
+      dir = Directory.new(self.to_s)
     
-    dir.open(&amp;block) if block_given?
+      dir.open(&amp;block) if block_given?
     
-    dir
-  end
-  
-  def open(mode=nil, &amp;block)
-    raise PowError, &quot;Path (#{path}) does not exist.&quot;
+      dir
+    end
   end
 end
\ No newline at end of file</diff>
      <filename>lib/pow/pow.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-class Pow #:nodoc:
+module Pow #:nodoc:
   module VERSION #:nodoc:
     MAJOR = 0
     MINOR = 2</diff>
      <filename>lib/pow/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@ require 'spec'
 
 require File.dirname(__FILE__) + '/../lib/pow'
 
-context &quot;A File object&quot; do
+context Pow::File do
   setup do
     @dir_pathname = &quot;./test_dir&quot;
     @filename = &quot;file.txt&quot;  </diff>
      <filename>spec/file_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,135 +1,125 @@
 require File.dirname(__FILE__) + '/spec_helper.rb'
 
-require 'fileutils'
+require 'pow'
 
-require 'rubygems'
-require 'spec'
-
-require File.dirname(__FILE__) + '/../lib/pow'
-
-context &quot;A Pow object&quot; do
+describe Pow::Base, &quot;object creation&quot; do
   setup do
-    @dir_pathname = Pathname.new(&quot;./test_dir&quot;)
-    @dir_pathname.mkdir
+    @dir_pathname = &quot;./test_dir&quot;
+    FileUtils.mkdir(@dir_pathname)
     
     @file_pathname = &quot;./test_dir/file&quot;
     open(@file_pathname, &quot;w+&quot;)
   end 
   
   teardown do
-    @dir_pathname.rmtree
+    FileUtils.rmtree @dir_pathname
   end
   
-  specify &quot;should open an exsiting directory as a Pow::Directory&quot; do
-    path = Pow.open(@dir_pathname)
+  it &quot;opens an exsiting directory as a Pow::Directory&quot; do
+    path = Pow::Base.open(@dir_pathname)
     path.should be_instance_of(Pow::Directory)
+    
+    path.to_s.should == File.expand_path(@dir_pathname)  
   end
   
-  specify &quot;should open an exsiting file as a File&quot; do
-    path = Pow.open(@file_pathname)
+  it &quot;opens an exsiting file as a File&quot; do
+    path = Pow::Base.open(@file_pathname)
     path.should be_instance_of(Pow::File)
+
+    path.to_s.should == File.expand_path(@file_pathname)    
   end
   
-  specify &quot;should open an non-exsiting path as a Pow&quot; do
-    path = Pow.open(&quot;./blah/blah/blah/blah&quot;)
-    path.should be_instance_of(Pow)
+  it &quot;opens an non-exsiting path as a Pow&quot; do
+    path = Pow::Base.open(&quot;./blah/blah/blah/blah&quot;)
+    path.should be_instance_of(Pow::Base)
   end
 
-  specify &quot;should succeed in opening with brackets.&quot; do    
-    path = Pow[@dir_pathname]
+  it &quot;opens path with Pow method.&quot; do    
+    path = Pow(@dir_pathname)
     path.should be_kind_of(Pow::Directory)
-    FileTest.exist?(path.to_s).should be_true
-    path.to_s.should == @dir_pathname.expand_path.to_s
+    
+    path.to_s.should == File.expand_path(@dir_pathname)    
   end
   
-  specify &quot;should succeed using string with Pow.open.&quot; do    
-    path = Pow.open(@dir_pathname.to_s)
+  it &quot;opens using string with Pow::Base.open.&quot; do    
+    path = Pow(@dir_pathname.to_s)
     path.should be_kind_of(Pow::Directory)
-    FileTest.exist?(path.to_s).should be_true
-    path.to_s.should == @dir_pathname.expand_path.to_s
+    
+    path.to_s.should == File.expand_path(@dir_pathname)
   end  
   
-  specify &quot;should succeed using pathname with Pow.open.&quot; do
-    path = Pow.open(@dir_pathname)
-    path.should be_kind_of(Pow::Directory)
-    FileTest.exist?(path.to_s).should be_true
-    path.to_s.should == @dir_pathname.expand_path.to_s
-  end
-  
-  specify &quot;should succeed using Pow with Pow.open.&quot; do    
-    path = Pow.open(Pow.open(@dir_pathname.to_s))
+  it &quot;opens using Pow object with Pow::Base.open.&quot; do    
+    pow = Pow::Base.open(@dir_pathname.to_s)
+    path = Pow::Base.open(pow)
     path.should be_kind_of(Pow::Directory)
-    FileTest.exist?(path.to_s).should be_true
-    path.to_s.should == @dir_pathname.expand_path.to_s
+
+    path.to_s.should == File.expand_path(@dir_pathname)    
   end
   
-  specify &quot;should succeed using the / operator.&quot; do
+  it &quot;appends paths using the / operator.&quot; do
     subdir_name = &quot;sub_dir&quot;
-    subdir_pathname = Pathname.new(&quot;#{@dir_pathname}/#{subdir_name}&quot;)
-    subdir_pathname.mkdir
+    subdir_pathname = &quot;#{@dir_pathname}/#{subdir_name}&quot;
+    FileUtils.mkdir(subdir_pathname)
     
-    path = Pow.open(@dir_pathname)
+    path = Pow(@dir_pathname)
     
     subdir_path = path/subdir_name
     subdir_path.should be_kind_of(Pow::Directory)
     FileTest.exist?(subdir_path.to_s).should be_true
-    subdir_path.to_s.should == subdir_pathname.expand_path.to_s
+    subdir_path.to_s.should == File.expand_path(subdir_pathname)
   end
 end
 
-context &quot;A Pow object&quot; do
+describe Pow::Base, &quot;object equality&quot; do
   setup do
-    @dir = Pow.open(&quot;./blah1/blah2/blah3/blah4&quot;)
+    @path = &quot;./blah1/blah2/blah3/blah4&quot;
+    @pow = Pow::Base.open(@path)
   end 
   
-  specify &quot;should equal an equivalent path object.&quot; do    
-    @dir.should == Pow.open(@dir)
+  it &quot;equals an equivalent Pow object.&quot; do    
+    (@pow == Pow::Base.open(@path)).should be_true
   end
-  
-  specify &quot;should know it's parent&quot; do    
-    @dir.parent.should == Pow[&quot;./blah1/blah2/blah3&quot;]
+
+  it &quot;should know it's parent&quot; do    
+    @pow.parent.should == Pow(&quot;./blah1/blah2/blah3&quot;)
   end
 end
 
-context &quot;A Pow object pointing to a non-existing path&quot; do
+describe Pow::Base, &quot;non-existing paths&quot; do
   setup do
-    @dir = Pow.open(&quot;./blah/blah/blah/blah&quot;)
+    @pow = Pow::Base.open(&quot;./blah/blah/blah/blah&quot;)
   end 
   
-  specify &quot;should know it doesn't exists&quot; do    
-    @dir.should_not be_exist
+  it &quot;should know it doesn't exists&quot; do    
+    @pow.exists?.should be_false
+  end
+  
+  it &quot;can't be open&quot; do    
+    lambda {@pow.open}.should raise_error(PowError)
   end
 end
 
-context &quot;A new Pow&quot; do
+describe Pow::Base, &quot;creation&quot; do
   setup do
     FileUtils.mkpath &quot;./test_dir/&quot;
-    @dir = Pow[&quot;./test_dir&quot;].create
+    @dir = Pow(&quot;./test_dir&quot;).create
   end
   
   teardown do
     FileUtils.rm_r @dir.to_s if FileTest.exist?(@dir.to_s)
   end
   
-  specify &quot;should be of type Pow before created&quot; do
-    @dir[&quot;non_existant&quot;].should be_kind_of(Pow)
-  end
-
-  specify &quot;should not exist&quot; do
-    @dir[&quot;non_existant&quot;].exists?.should be_false
-  end
-
-  specify &quot;should be created as a file . found&quot; do
+  it &quot;creates as a file if . found&quot; do
     path = @dir[&quot;new.file&quot;].create
 
     path.should be_kind_of(Pow::File)
-    path.exists?.should be_true
+    File.exists?(path.to_s)
   end
 
-  specify &quot;should be created as a directory if no . is found&quot; do
+  it &quot;should be created as a directory if no . is found&quot; do
     path = @dir[&quot;new_directory&quot;].create
 
     path.should be_kind_of(Pow::Directory)
-    path.exists?.should be_true
+    File.exists?(path.to_s)
   end
 end
\ No newline at end of file</diff>
      <filename>spec/pow_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -4,4 +4,6 @@ rescue LoadError
   require 'rubygems'
   gem 'rspec'
   require 'spec'
-end
\ No newline at end of file
+end
+
+$:.unshift File.dirname(__FILE__) + '/../lib/'
\ No newline at end of file</diff>
      <filename>spec/spec_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,21 +1,21 @@
-begin
-  require 'spec'
-rescue LoadError
-  require 'rubygems'
-  require 'spec'
-end
-begin
-  require 'spec/rake/spectask'
-rescue LoadError
-  puts &lt;&lt;-EOS
-To use rspec for testing you must install rspec gem:
-    gem install rspec
-EOS
-  exit(0)
-end
-
-desc &quot;Run the specs under spec/models&quot;
-Spec::Rake::SpecTask.new do |t|
-  t.spec_opts = ['--options', &quot;spec/spec.opts&quot;]
-  t.spec_files = FileList['spec/*_spec.rb']
-end
+# begin
+#   require 'spec'
+# rescue LoadError
+#   require 'rubygems'
+#   require 'spec'
+# end
+# begin
+#   require 'spec/rake/spectask'
+# rescue LoadError
+#   puts &lt;&lt;-EOS
+# To use rspec for testing you must install rspec gem:
+#     gem install rspec
+# EOS
+#   exit(0)
+# end
+# 
+# desc &quot;Run the specs under spec/models&quot;
+# Spec::Rake::SpecTask.new do |t|
+#   t.spec_opts = ['--options', &quot;spec/spec.opts&quot;]
+#   t.spec_files = FileList['spec/*_spec.rb']
+# end</diff>
      <filename>tasks/rspec.rake</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>doc/classes/Pow/Directory.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000001.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000002.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000003.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000004.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000005.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000006.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000007.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000008.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000009.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000010.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000011.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000012.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/Directory.src/M000013.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/File.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/File.src/M000014.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/File.src/M000015.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/File.src/M000016.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/File.src/M000017.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/File.src/M000018.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/File.src/M000019.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/File.src/M000020.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/Pow/File.src/M000021.html</filename>
    </removed>
    <removed>
      <filename>doc/classes/PowError.html</filename>
    </removed>
    <removed>
      <filename>doc/created.rid</filename>
    </removed>
    <removed>
      <filename>doc/files/History_txt.html</filename>
    </removed>
    <removed>
      <filename>doc/files/License_txt.html</filename>
    </removed>
    <removed>
      <filename>doc/files/README_txt.html</filename>
    </removed>
    <removed>
      <filename>doc/files/lib/pow/directory_rb.html</filename>
    </removed>
    <removed>
      <filename>doc/files/lib/pow/file_rb.html</filename>
    </removed>
    <removed>
      <filename>doc/files/lib/pow/pow_rb.html</filename>
    </removed>
    <removed>
      <filename>doc/files/lib/pow/version_rb.html</filename>
    </removed>
    <removed>
      <filename>doc/files/lib/pow_rb.html</filename>
    </removed>
    <removed>
      <filename>doc/files/website/index_txt.html</filename>
    </removed>
    <removed>
      <filename>doc/fr_class_index.html</filename>
    </removed>
    <removed>
      <filename>doc/fr_file_index.html</filename>
    </removed>
    <removed>
      <filename>doc/fr_method_index.html</filename>
    </removed>
    <removed>
      <filename>doc/index.html</filename>
    </removed>
    <removed>
      <filename>doc/rdoc-style.css</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0.gem</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0.tgz</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/History.txt</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/License.txt</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/Manifest.txt</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/README.txt</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/Rakefile</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/config/hoe.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/config/requirements.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/lib/pow.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/lib/pow/directory.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/lib/pow/file.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/lib/pow/pow.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/lib/pow/version.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/log/debug.log</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/script/destroy</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/script/generate</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/script/txt2html</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/setup.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/spec/directory_spec.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/spec/file_spec.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/spec/pow_spec.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/spec/spec.opts</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/spec/spec_helper.rb</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/tasks/deployment.rake</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/tasks/environment.rake</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/tasks/rspec.rake</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/tasks/website.rake</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/website/index.html</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/website/index.txt</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/website/javascripts/rounded_corners_lite.inc.js</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/website/stylesheets/screen.css</filename>
    </removed>
    <removed>
      <filename>pkg/pow-0.1.0/website/template.rhtml</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>f0d5dec8cffd66047a04eac0daf42fe7dbd5efd1</id>
    </parent>
  </parents>
  <author>
    <name>Corey</name>
    <email>cj@mr-president.streeteasy.com</email>
  </author>
  <url>http://github.com/probablycorey/pow/commit/351e42d5ec1bfc9555c11157078987674476bd0c</url>
  <id>351e42d5ec1bfc9555c11157078987674476bd0c</id>
  <committed-date>2008-03-06T13:44:19-08:00</committed-date>
  <authored-date>2008-03-06T13:44:19-08:00</authored-date>
  <message>cleaning up tests</message>
  <tree>241648a6037168135a008a5251a7d2ff1de5129a</tree>
  <committer>
    <name>Corey</name>
    <email>cj@mr-president.streeteasy.com</email>
  </committer>
</commit>
