Don't put css saved during test failures in the gem.

This commit is contained in:
Chris Eppstein 2009-06-28 16:30:53 -07:00
parent 48208896ef
commit 44a85c0304

View File

@ -61,7 +61,9 @@ begin
gemspec.files += Dir.glob("frameworks/**/*.*")
gemspec.files += Dir.glob("lib/**/*")
gemspec.files += Dir.glob("test/**/*.*")
gemspec.files -= Dir.glob("test/fixtures/stylesheets/*/saved/**/*.*")
gemspec.test_files = Dir.glob("test/**/*.*")
gemspec.test_files -= Dir.glob("test/fixtures/stylesheets/*/saved/**/*.*")
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"