<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>example/lib/example.js</filename>
    </added>
    <added>
      <filename>example/lib/models/cat.js</filename>
    </added>
    <added>
      <filename>example/lib/models/man.js</filename>
    </added>
    <added>
      <filename>spec/screw_unit/file_system_fixtures_for_asset_manager_specs/dir_1/1.js</filename>
    </added>
    <added>
      <filename>spec/screw_unit/file_system_fixtures_for_asset_manager_specs/dir_1/subdir_1/4.js</filename>
    </added>
    <added>
      <filename>spec/screw_unit/file_system_fixtures_for_asset_manager_specs/dir_2/2.js</filename>
    </added>
    <added>
      <filename>spec/screw_unit/file_system_fixtures_for_asset_manager_specs/dir_3/3.js</filename>
    </added>
    <added>
      <filename>spec/screw_unit/file_system_fixtures_for_asset_manager_specs/dir_3/subdir_3/5.js</filename>
    </added>
    <added>
      <filename>spec/screw_unit/file_system_fixtures_for_asset_manager_specs/dir_4/1.css</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,4 @@
-ScrewUnit.configure do
+  ScrewUnit.configure do
   port 8181
   add_js_location &quot;/under_test&quot;, &quot;client/lib&quot;
   add_js_location &quot;/specs&quot;, &quot;client/spec&quot;</diff>
      <filename>.screwrc</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
   ScrewUnit.configure do
     port 8082
-    code_under_test_path &quot;models&quot;
-    specs_path &quot;spec&quot;
-  end
\ No newline at end of file
+    add_js_location &quot;/under_test&quot;, &quot;lib&quot;
+    add_js_location &quot;/specs&quot;, &quot;spec&quot;
+  end</diff>
      <filename>example/.screwrc</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-require(&quot;/specs/spec_helper&quot;)
+//= require &quot;../spec_helper&quot;
 
 Screw.Unit(function(c) { with(c) {
   describe('Cat', function() {
@@ -30,4 +30,4 @@ Screw.Unit(function(c) { with(c) {
       });
     });
   });
-}});
\ No newline at end of file
+}});</diff>
      <filename>example/spec/models/cat_spec.js</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-require(&quot;/specs/spec_helper&quot;);
+//= require &quot;../spec_helper&quot;
 
 Screw.Unit(function(c) { with(c) {
   describe('Man', function() {
@@ -23,14 +23,14 @@ Screw.Unit(function(c) { with(c) {
     
     describe('@click', function() {
       before(function() {
-        $('#test_content').append(man.render());
+        Screw.$('#test_content').append(man.render());
       });
       
       it(&quot;removes the man's hair&quot;, function() {
-        expect($('.man .hair')).to_not(be_empty);
-        $('.man').click();
-        expect($('.man .hair')).to(be_empty);
+        expect(Screw.$('.man .hair')).to_not(be_empty);
+        Screw.$('.man').click();
+        expect(Screw.$('.man .hair')).to(be_empty);
       });
     });
   });
-}});
\ No newline at end of file
+}});</diff>
      <filename>example/spec/models/man_spec.js</filename>
    </modified>
    <modified>
      <diff>@@ -1,8 +1,7 @@
-require(&quot;/cat&quot;);
-require(&quot;/man&quot;);
+//= require &lt;example&gt;;
 
 Screw.Unit(function(c) { with(c) {
   before(function() {
-    $('dom_test').empty();
+    Screw.$('dom_test').empty(); // Screw comes with its own version of jQuery, located Screw.$ to keep out of your version's way if you have one
   });
-}});
\ No newline at end of file
+}});</diff>
      <filename>example/spec/spec_helper.js</filename>
    </modified>
    <modified>
      <diff>@@ -11,8 +11,8 @@
     &lt;script src=&quot;spec_helper.js&quot;&gt;&lt;/script&gt;
     &lt;script src=&quot;matchers/have.js&quot;&gt;&lt;/script&gt;
     
-    &lt;script src=&quot;../models/cat.js&quot;&gt;&lt;/script&gt;
-    &lt;script src=&quot;../models/man.js&quot;&gt;&lt;/script&gt;
+    &lt;script src=&quot;../lib/models/cat.js&quot;&gt;&lt;/script&gt;
+    &lt;script src=&quot;../lib/models/man.js&quot;&gt;&lt;/script&gt;
     
     &lt;script src=&quot;models/cat_spec.js&quot;&gt;&lt;/script&gt;
     &lt;script src=&quot;models/man_spec.js&quot;&gt;&lt;/script&gt;
@@ -22,4 +22,4 @@
   &lt;body&gt;
     &lt;div id=&quot;dom_test&quot; style=&quot;position: absolute; left: -9999&quot;&gt;&lt;/div&gt;
   &lt;/body&gt;
-&lt;/html&gt;
\ No newline at end of file
+&lt;/html&gt;</diff>
      <filename>example/spec/suite.html</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,6 @@
 dir = File.dirname(__FILE__)
 require &quot;rubygems&quot;
 require &quot;thin&quot;
-require &quot;#{dir}/../vendor/sprockets/lib/sprockets&quot;
 require &quot;#{dir}/screw_unit/dispatcher&quot;
 require &quot;#{dir}/screw_unit/server&quot;
 require &quot;#{dir}/screw_unit/resources&quot;</diff>
      <filename>lib/screw_unit.rb</filename>
    </modified>
    <modified>
      <diff>@@ -10,9 +10,6 @@ module ScrewUnit
     def initialize
       @locations = []
       @js_locations = []
-      add_js_location(&quot;/screw_unit_core&quot;, &quot;#{SCREW_UNIT_ROOT}/client/lib&quot;)
-      add_js_location(&quot;/screw_unit_vendor&quot;, &quot;#{SCREW_UNIT_ROOT}/client/vendor&quot;)
-      add_js_location(&quot;/screw_unit_stylesheets&quot;, &quot;#{SCREW_UNIT_ROOT}/client/stylesheets&quot;)
     end
 
     def add_location(virtual_path, physical_path)</diff>
      <filename>lib/screw_unit/asset_manager.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,4 @@
 module ScrewUnit
-
   def self.configure(&amp;block)
     Configuration.instance.instance_eval(&amp;block)
   end
@@ -25,6 +24,9 @@ module ScrewUnit
 
     def initialize
       @asset_manager = AssetManager.new
+      asset_manager.add_js_location(&quot;/screw_unit_core&quot;, &quot;#{SCREW_UNIT_ROOT}/client/lib&quot;)
+      asset_manager.add_js_location(&quot;/screw_unit_vendor&quot;, &quot;#{SCREW_UNIT_ROOT}/client/vendor&quot;)
+      asset_manager.add_js_location(&quot;/screw_unit_stylesheets&quot;, &quot;#{SCREW_UNIT_ROOT}/client/stylesheets&quot;)
     end
 
     def load_screwrc(path_containing_screwrc)</diff>
      <filename>lib/screw_unit/configuration.rb</filename>
    </modified>
    <modified>
      <diff>@@ -5,7 +5,7 @@ module ScrewUnit
         virtual_child_path = ::File.join(virtual_path, name)
         physical_child_path = asset_manager.physicalize_path(virtual_child_path)
 
-        if ::File.exists?(physical_child_path)
+        if physical_child_path &amp;&amp; ::File.exists?(physical_child_path)
           if ::File.directory?(physical_child_path)
             Dir.new(virtual_child_path, asset_manager)
           else</diff>
      <filename>lib/screw_unit/resources/dir.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,36 +7,36 @@ module ScrewUnit
     before do
       @dir = File.dirname(__FILE__)
       @manager = AssetManager.new
-      manager.add_js_location(&quot;/specs/1&quot;, &quot;#{dir}/asset_manager_spec/dir_1&quot;)
-      manager.add_js_location(&quot;/specs/2&quot;, &quot;#{dir}/asset_manager_spec/dir_2&quot;)
-      manager.add_js_location(&quot;/implementations&quot;, &quot;#{dir}/asset_manager_spec/dir_3&quot;)
-      manager.add_location(&quot;/css&quot;, &quot;#{dir}/asset_manager_spec/dir_4&quot;)
+      manager.add_js_location(&quot;/specs/1&quot;, &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_1&quot;)
+      manager.add_js_location(&quot;/specs/2&quot;, &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_2&quot;)
+      manager.add_js_location(&quot;/implementations&quot;, &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_3&quot;)
+      manager.add_location(&quot;/css&quot;, &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_4&quot;)
     end
 
     describe &quot;#virtualize_path&quot; do
       it &quot;converts a physical path to a virtual path based on the declared locations&quot; do
-        manager.virtualize_path(&quot;#{dir}/asset_manager_spec/dir_1/1.js&quot;).should == &quot;/specs/1/1.js&quot;
-        manager.virtualize_path(&quot;#{dir}/asset_manager_spec/dir_2/2.js&quot;).should == &quot;/specs/2/2.js&quot;
-        manager.virtualize_path(&quot;#{dir}/asset_manager_spec/dir_3/3.js&quot;).should == &quot;/implementations/3.js&quot;
+        manager.virtualize_path(&quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_1/1.js&quot;).should == &quot;/specs/1/1.js&quot;
+        manager.virtualize_path(&quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_2/2.js&quot;).should == &quot;/specs/2/2.js&quot;
+        manager.virtualize_path(&quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_3/3.js&quot;).should == &quot;/implementations/3.js&quot;
         manager.virtualize_path(&quot;/crap&quot;).should be_nil
       end
 
       it &quot;corrently handles handles a virtual path of '/'&quot; do
-        manager.add_location('/', &quot;#{dir}/asset_manager_spec/dir_4&quot;)
-        manager.virtualize_path(&quot;#{dir}/asset_manager_spec/dir_4/1.css&quot;).should == &quot;/1.css&quot;
+        manager.add_location('/', &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_4&quot;)
+        manager.virtualize_path(&quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_4/1.css&quot;).should == &quot;/1.css&quot;
       end
     end
 
     describe &quot;#physicalize_path&quot; do
       it &quot;converts a virtual path to a physical path based on the declared locations&quot; do
-        manager.physicalize_path(&quot;/specs/1/1.js&quot;).should == &quot;#{dir}/asset_manager_spec/dir_1/1.js&quot;
-        manager.physicalize_path(&quot;/specs/2/2.js&quot;).should == &quot;#{dir}/asset_manager_spec/dir_2/2.js&quot;
-        manager.physicalize_path(&quot;/implementations/3.js&quot;).should == &quot;#{dir}/asset_manager_spec/dir_3/3.js&quot;
+        manager.physicalize_path(&quot;/specs/1/1.js&quot;).should == &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_1/1.js&quot;
+        manager.physicalize_path(&quot;/specs/2/2.js&quot;).should == &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_2/2.js&quot;
+        manager.physicalize_path(&quot;/implementations/3.js&quot;).should == &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_3/3.js&quot;
       end
 
       it &quot;corrently handles handles a virtual path of '/'&quot; do
-        manager.add_location('/', &quot;#{dir}/asset_manager_spec/dir_4&quot;)
-        manager.physicalize_path('/1.css').should == &quot;#{dir}/asset_manager_spec/dir_4/1.css&quot;
+        manager.add_location('/', &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_4&quot;)
+        manager.physicalize_path('/1.css').should == &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_4/1.css&quot;
       end
     end
 </diff>
      <filename>spec/screw_unit/asset_manager_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -6,17 +6,17 @@ module ScrewUnit
 
     before do
       @dir = File.dirname(__FILE__)
-      asset_manager = AssetManager.new
-      asset_manager.add_js_location(&quot;/implementations&quot;, &quot;#{dir}/asset_manager_spec/dir_3&quot;)
-      @js_file = JsFile.new(&quot;#{dir}/asset_manager_spec/dir_1/1.js&quot;, asset_manager)
+      asset_manager = Configuration.new.asset_manager
+      asset_manager.add_js_location(&quot;/implementations&quot;, &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_3&quot;)
+      @js_file = JsFile.new(&quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_1/1.js&quot;, asset_manager)
     end
 
     describe &quot;#require_declarations&quot; do
       it &quot;returns a relative or global RequireDeclaration for every Sprockets-style require declaration in the file&quot; do
         require_declarations = js_file.require_declarations
         require_declarations.size.should == 2
-        require_declarations[0].js_file.physical_path.should == &quot;#{dir}/asset_manager_spec/dir_1/subdir_1/4.js&quot;
-        require_declarations[1].js_file.physical_path.should == &quot;#{dir}/asset_manager_spec/dir_3/3.js&quot;
+        require_declarations[0].js_file.physical_path.should == &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_1/subdir_1/4.js&quot;
+        require_declarations[1].js_file.physical_path.should == &quot;#{dir}/file_system_fixtures_for_asset_manager_specs/dir_3/3.js&quot;
       end
     end
   end</diff>
      <filename>spec/screw_unit/js_file_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,20 +7,20 @@ module ScrewUnit
 
       before do
         spec_file_dir = ::File.dirname(__FILE__)
-        @asset_manager = AssetManager.new
+        @asset_manager = Configuration.new.asset_manager
       end
 
       describe &quot;#locate&quot; do
         before do
-          asset_manager.add_location(&quot;/&quot;, &quot;#{::File.dirname(__FILE__)}/file_system_fixtures&quot;)
-          @dir = Dir.new(&quot;/&quot;, asset_manager)
+          asset_manager.add_location(&quot;/x&quot;, &quot;#{::File.dirname(__FILE__)}/file_system_fixtures&quot;)
+          @dir = Dir.new(&quot;/x&quot;, asset_manager)
         end
 
         context &quot;when the string names a file in the directory&quot; do
           it &quot;returns a File resource with the appropriate virtual path and the same AssetManager&quot; do
             file = dir.locate(&quot;foo.js&quot;)
             file.class.should == Resources::File
-            file.virtual_path.should == &quot;/foo.js&quot;
+            file.virtual_path.should == &quot;/x/foo.js&quot;
             file.asset_manager.should == asset_manager
           end
         end
@@ -29,7 +29,7 @@ module ScrewUnit
           it &quot;returns a Dir resource with the appropriate absolute path and the same AssetManeger&quot; do
             subdir = dir.locate(&quot;specs&quot;)
             subdir.class.should == Resources::Dir
-            subdir.virtual_path.should == &quot;/specs&quot;
+            subdir.virtual_path.should == &quot;/x/specs&quot;
             subdir.asset_manager.should == asset_manager
           end
         end
@@ -38,6 +38,10 @@ module ScrewUnit
           it &quot;returns a FileNotFound resource with the relative path&quot; do
             not_found = dir.locate(&quot;bogus&quot;)
             not_found.class.should == FileNotFound
+            not_found.virtual_path.should == &quot;/x/bogus&quot;
+
+            not_found = Dir.new(&quot;/&quot;, asset_manager).locate(&quot;bogus&quot;)
+            not_found.class.should == FileNotFound
             not_found.virtual_path.should == &quot;/bogus&quot;
           end
         end</diff>
      <filename>spec/screw_unit/resources/dir_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@ module ScrewUnit
 
       before do
         @dir = ::File.dirname(__FILE__)
-        @asset_manager = AssetManager.new
+        @asset_manager = Configuration.new.asset_manager
         asset_manager.add_js_location(&quot;/&quot;, &quot;#{dir}/file_system_fixtures&quot;)
         @file = File.new(virtual_path, asset_manager)
       end</diff>
      <filename>spec/screw_unit/resources/file_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@ module ScrewUnit
 
       before do
         dir = ::File.dirname(__FILE__)
-        @asset_manager = AssetManager.new
+        @asset_manager = Configuration.new.asset_manager
         asset_manager.add_js_location(&quot;/specs&quot;, &quot;#{dir}/file_system_fixtures/specs&quot;)
         @spec_dir = SpecDir.new(&quot;/specs&quot;, asset_manager)
       end</diff>
      <filename>spec/screw_unit/resources/spec_dir_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,7 @@ module ScrewUnit
 
       before do
         @dir = ::File.dirname(__FILE__)
-        @asset_manager = AssetManager.new
+        @asset_manager = Configuration.new.asset_manager
         asset_manager.add_location(&quot;/specs&quot;, &quot;#{dir}/file_system_fixtures/specs&quot;)
         @spec_file_resources = Dir.new(&quot;/specs&quot;, asset_manager).glob(&quot;**/*.js&quot;)
         @spec_suite = SpecSuite.new(spec_file_resources, asset_manager)</diff>
      <filename>spec/screw_unit/resources/spec_suite_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>.braids</filename>
    </removed>
    <removed>
      <filename>History.txt</filename>
    </removed>
    <removed>
      <filename>Manifest.txt</filename>
    </removed>
    <removed>
      <filename>client/lib/screw/jquery_mapper.js</filename>
    </removed>
    <removed>
      <filename>example/models/cat.js</filename>
    </removed>
    <removed>
      <filename>example/models/man.js</filename>
    </removed>
    <removed>
      <filename>javascript/lib/disco.js</filename>
    </removed>
    <removed>
      <filename>javascript/lib/screw/jquery_mapper.js</filename>
    </removed>
    <removed>
      <filename>spec/screw_unit/asset_manager_spec/dir_1/1.js</filename>
    </removed>
    <removed>
      <filename>spec/screw_unit/asset_manager_spec/dir_1/subdir_1/4.js</filename>
    </removed>
    <removed>
      <filename>spec/screw_unit/asset_manager_spec/dir_2/2.js</filename>
    </removed>
    <removed>
      <filename>spec/screw_unit/asset_manager_spec/dir_3/3.js</filename>
    </removed>
    <removed>
      <filename>spec/screw_unit/asset_manager_spec/dir_3/subdir_3/5.js</filename>
    </removed>
    <removed>
      <filename>spec/screw_unit/asset_manager_spec/dir_4/1.css</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/.gitignore</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/CHANGELOG</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/LICENSE</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/README.markdown</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/Rakefile</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/bin/sprocketize</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/ext/nph-sprockets.cgi</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/lib/sprockets.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/lib/sprockets/concatenation.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/lib/sprockets/environment.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/lib/sprockets/error.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/lib/sprockets/pathname.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/lib/sprockets/preprocessor.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/lib/sprockets/secretary.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/lib/sprockets/source_file.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/lib/sprockets/source_line.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/lib/sprockets/version.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/sprockets.gemspec</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/assets/images/script_with_assets/one.png</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/assets/images/script_with_assets/two.png</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/assets/stylesheets/script_with_assets.css</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/constants.yml</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/dependency_ordered_source_files.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/double_slash_comments_that_are_not_requires_should_be_ignored_when_strip_comments_is_false.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/double_slash_comments_that_are_not_requires_should_be_removed_by_default.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/multiline_comments_should_be_removed_by_default.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/requiring_a_file_after_it_has_already_been_required_should_do_nothing.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/requiring_a_file_that_does_not_exist_should_raise_an_error.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/requiring_a_single_file_should_replace_the_require_comment_with_the_file_contents.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/requiring_the_current_file_should_do_nothing.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/src/constants.yml</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/src/foo.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/src/foo/bar.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/src/foo/foo.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/src/interdependent_sources/1.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/src/interdependent_sources/2.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/src/interdependent_sources/3.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/src/interdependent_sources/4.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/src/interdependent_sources/5.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/src/script_with_assets.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/fixtures/src/script_with_comments.js</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/test_concatenation.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/test_environment.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/test_helper.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/test_pathname.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/test_preprocessor.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/test_secretary.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/test_source_file.rb</filename>
    </removed>
    <removed>
      <filename>vendor/sprockets/test/test_source_line.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>4965458c520c66be302b65666c7a6dc56341a568</id>
    </parent>
  </parents>
  <author>
    <name>Grockit</name>
    <email>grockit@grok-a.local</email>
  </author>
  <url>http://github.com/nathansobo/screw-unit/commit/efbf242a6ad31d1f59f5ec52883778157048cc7c</url>
  <id>efbf242a6ad31d1f59f5ec52883778157048cc7c</id>
  <committed-date>2009-09-03T16:32:40-07:00</committed-date>
  <authored-date>2009-09-03T16:32:40-07:00</authored-date>
  <message>Fixed the example.</message>
  <tree>213b303c82a08fffc086b3b898209cb644dc4522</tree>
  <committer>
    <name>Grockit</name>
    <email>grockit@grok-a.local</email>
  </committer>
</commit>
