<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -15,7 +15,7 @@ begin
     gem.authors = [&quot;Stephen Bartholomew&quot;]
     gem.rubyforge_project = &quot;staticmatic&quot;
     
-    gem.files =  FileList[&quot;[A-Z]*&quot;, &quot;{bin,lib,test}/**/*&quot;]
+    gem.files =  FileList[&quot;[A-Z]*&quot;, &quot;{bin,lib,spec}/**/*&quot;]
     
     gem.add_dependency(&quot;haml&quot;, &quot;&gt;=2.0.0&quot;)
     gem.add_dependency(&quot;mongrel&quot;, &quot;&gt;=1.1.5&quot;)</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
 --- 
 :major: 0
 :minor: 10
-:patch: 3
+:patch: 4</diff>
      <filename>VERSION.yml</filename>
    </modified>
    <modified>
      <diff>@@ -18,7 +18,10 @@ module StaticMatic::BuildMixin
   def build_css
     Dir[&quot;#{@src_dir}/stylesheets/**/*.sass&quot;].each do |path|
       file_dir, template = source_template_from_path(path.sub(/^#{@src_dir}\/stylesheets/, ''))
-      save_stylesheet(File.join(file_dir, template), generate_css(template, file_dir))
+      
+      if !template.match(/(^|\/)\_/)
+        save_stylesheet(File.join(file_dir, template), generate_css(template, file_dir))
+      end
     end
   end
   </diff>
      <filename>lib/staticmatic/mixins/build.rb</filename>
    </modified>
    <modified>
      <diff>@@ -5,11 +5,11 @@
 
 Gem::Specification.new do |s|
   s.name = %q{staticmatic}
-  s.version = &quot;0.10.2&quot;
+  s.version = &quot;0.10.4&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Stephen Bartholomew&quot;]
-  s.date = %q{2009-09-20}
+  s.date = %q{2009-10-05}
   s.default_executable = %q{staticmatic}
   s.description = %q{Lightweight Static Site Framework}
   s.email = %q{steve@curve21.com}
@@ -42,38 +42,40 @@ Gem::Specification.new do |s|
      &quot;lib/staticmatic/templates/default/index.haml&quot;,
      &quot;lib/staticmatic/templates/rescues/default.haml&quot;,
      &quot;lib/staticmatic/templates/rescues/template.haml&quot;,
-     &quot;test/base_test.rb&quot;,
-     &quot;test/helpers_test.rb&quot;,
-     &quot;test/render_test.rb&quot;,
-     &quot;test/rescue_test.rb&quot;,
-     &quot;test/sandbox/test_site/configuration.rb&quot;,
-     &quot;test/sandbox/test_site/site/index&quot;,
-     &quot;test/sandbox/test_site/site/index.html&quot;,
-     &quot;test/sandbox/test_site/site/layout_test&quot;,
-     &quot;test/sandbox/test_site/site/page_with_error&quot;,
-     &quot;test/sandbox/test_site/site/page_with_partial_error&quot;,
-     &quot;test/sandbox/test_site/site/stylesheets/application.css&quot;,
-     &quot;test/sandbox/test_site/site/sub_folder/another_sub_folder.&quot;,
-     &quot;test/sandbox/test_site/site/sub_folder/another_sub_folder/index.html&quot;,
-     &quot;test/sandbox/test_site/site/sub_folder/another_sub_folder/index.html.html&quot;,
-     &quot;test/sandbox/test_site/site/sub_folder/index.html&quot;,
-     &quot;test/sandbox/test_site/src/helpers/application_helper.rb&quot;,
-     &quot;test/sandbox/test_site/src/layouts/alternate_layout.haml&quot;,
-     &quot;test/sandbox/test_site/src/layouts/application.haml&quot;,
-     &quot;test/sandbox/test_site/src/layouts/projects.haml&quot;,
-     &quot;test/sandbox/test_site/src/pages/hello_world.erb&quot;,
-     &quot;test/sandbox/test_site/src/pages/index.haml&quot;,
-     &quot;test/sandbox/test_site/src/pages/layout_test.haml&quot;,
-     &quot;test/sandbox/test_site/src/pages/page_with_error.haml&quot;,
-     &quot;test/sandbox/test_site/src/pages/page_with_partial_error.haml&quot;,
-     &quot;test/sandbox/test_site/src/partials/menu.haml&quot;,
-     &quot;test/sandbox/test_site/src/partials/partial_with_error.haml&quot;,
-     &quot;test/sandbox/test_site/src/stylesheets/application.sass&quot;,
-     &quot;test/sandbox/test_site/src/stylesheets/css_with_error.sass&quot;,
-     &quot;test/server_test.rb&quot;,
-     &quot;test/setup_test.rb&quot;,
-     &quot;test/template_error_test.rb&quot;,
-     &quot;test/spec_helper.rb&quot;
+     &quot;spec/base_spec.rb&quot;,
+     &quot;spec/helpers_spec.rb&quot;,
+     &quot;spec/render_spec.rb&quot;,
+     &quot;spec/rescue_spec.rb&quot;,
+     &quot;spec/sandbox/test_site/configuration.rb&quot;,
+     &quot;spec/sandbox/test_site/site/index&quot;,
+     &quot;spec/sandbox/test_site/site/index.html&quot;,
+     &quot;spec/sandbox/test_site/site/layout_test&quot;,
+     &quot;spec/sandbox/test_site/site/page_with_error&quot;,
+     &quot;spec/sandbox/test_site/site/page_with_partial_error&quot;,
+     &quot;spec/sandbox/test_site/site/stylesheets/application.css&quot;,
+     &quot;spec/sandbox/test_site/site/sub_folder/another_sub_folder.&quot;,
+     &quot;spec/sandbox/test_site/site/sub_folder/another_sub_folder/index.html&quot;,
+     &quot;spec/sandbox/test_site/site/sub_folder/another_sub_folder/index.html.html&quot;,
+     &quot;spec/sandbox/test_site/site/sub_folder/index.html&quot;,
+     &quot;spec/sandbox/test_site/src/helpers/application_helper.rb&quot;,
+     &quot;spec/sandbox/test_site/src/layouts/alternate_layout.haml&quot;,
+     &quot;spec/sandbox/test_site/src/layouts/application.haml&quot;,
+     &quot;spec/sandbox/test_site/src/layouts/projects.haml&quot;,
+     &quot;spec/sandbox/test_site/src/pages/hello_world.erb&quot;,
+     &quot;spec/sandbox/test_site/src/pages/index.haml&quot;,
+     &quot;spec/sandbox/test_site/src/pages/layout_test.haml&quot;,
+     &quot;spec/sandbox/test_site/src/pages/page_with_error.haml&quot;,
+     &quot;spec/sandbox/test_site/src/pages/page_with_partial_error.haml&quot;,
+     &quot;spec/sandbox/test_site/src/partials/menu.haml&quot;,
+     &quot;spec/sandbox/test_site/src/partials/partial_with_error.haml&quot;,
+     &quot;spec/sandbox/test_site/src/stylesheets/application.sass&quot;,
+     &quot;spec/sandbox/test_site/src/stylesheets/css_with_error.sass&quot;,
+     &quot;spec/sandbox/test_site/src/stylesheets/nested/a_nested_stylesheet.sass&quot;,
+     &quot;spec/sandbox/test_site/src/stylesheets/partials/_forms.sass&quot;,
+     &quot;spec/server_spec.rb&quot;,
+     &quot;spec/setup_spec.rb&quot;,
+     &quot;spec/spec_helper.rb&quot;,
+     &quot;spec/template_error_spec.rb&quot;
   ]
   s.homepage = %q{http://staticmatic.net}
   s.rdoc_options = [&quot;--charset=UTF-8&quot;]
@@ -82,16 +84,16 @@ Gem::Specification.new do |s|
   s.rubygems_version = %q{1.3.5}
   s.summary = %q{Lightweight Static Site Framework}
   s.test_files = [
-    &quot;test/base_test.rb&quot;,
-     &quot;test/helpers_test.rb&quot;,
-     &quot;test/render_test.rb&quot;,
-     &quot;test/rescue_test.rb&quot;,
-     &quot;test/sandbox/test_site/configuration.rb&quot;,
-     &quot;test/sandbox/test_site/src/helpers/application_helper.rb&quot;,
-     &quot;test/server_test.rb&quot;,
-     &quot;test/setup_test.rb&quot;,
-     &quot;test/template_error_test.rb&quot;,
-     &quot;test/spec_helper.rb&quot;
+    &quot;spec/base_spec.rb&quot;,
+     &quot;spec/helpers_spec.rb&quot;,
+     &quot;spec/render_spec.rb&quot;,
+     &quot;spec/rescue_spec.rb&quot;,
+     &quot;spec/sandbox/test_site/configuration.rb&quot;,
+     &quot;spec/sandbox/test_site/src/helpers/application_helper.rb&quot;,
+     &quot;spec/server_spec.rb&quot;,
+     &quot;spec/setup_spec.rb&quot;,
+     &quot;spec/spec_helper.rb&quot;,
+     &quot;spec/template_error_spec.rb&quot;
   ]
 
   if s.respond_to? :specification_version then</diff>
      <filename>staticmatic.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0f9ea5bfda9857093488e3826624319baf2b7986</id>
    </parent>
  </parents>
  <author>
    <name>Stephen Bartholomew</name>
    <email>steve@curve21.com</email>
  </author>
  <url>http://github.com/staticmatic/staticmatic/commit/43068caa293e7ed012702a93f9c6e92fae17d013</url>
  <id>43068caa293e7ed012702a93f9c6e92fae17d013</id>
  <committed-date>2009-10-05T13:13:45-07:00</committed-date>
  <authored-date>2009-10-05T13:13:45-07:00</authored-date>
  <message>Update gemspec, ignore sass partials in build</message>
  <tree>314a9f5a99570f5dc67726b20b630958ceb2d478</tree>
  <committer>
    <name>Stephen Bartholomew</name>
    <email>steve@curve21.com</email>
  </committer>
</commit>
