1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Clean temporary log files (and exclude from Gem)

This commit is contained in:
Luis Lavena 2009-07-06 23:14:02 -03:00
parent a4beb37b15
commit 80142a47ea
3 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View file

@ -3,5 +3,6 @@
*.o
*.so
doc
log
pkg
tmp

View file

@ -51,6 +51,7 @@ lib/mongrel/uri_classifier.rb
setup.rb
tasks/gem.rake
tasks/native.rake
tasks/ragel.rake
test/mime.yaml
test/mongrel.conf
test/test_cgi_wrapper.rb

View file

@ -18,6 +18,8 @@ HOE = Hoe.spec 'mongrel' do
extra_deps << ['gem_plugin', '>= 0.2.3']
extra_dev_deps << ['rake-compiler', ">= 0.5.0"]
clean_globs.push('test_*.log', 'log')
end
file "#{HOE.spec.name}.gemspec" => ['Rakefile', 'tasks/gem.rake'] do |t|