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

Removes the test/coverage from the gem

git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@305 19e92222-5c0b-0410-8929-a290d50e31e9
This commit is contained in:
zedshaw 2006-08-05 18:05:47 +00:00
parent dadaaff8e3
commit 9ffb99ce78

View file

@ -64,6 +64,7 @@ end
def base_gem_spec(pkg_name, pkg_version)
rm_rf "test/coverage"
pkg_version = pkg_version
pkg_name = pkg_name
pkg_file_name = "#{pkg_name}-#{pkg_version}"
@ -75,10 +76,9 @@ def base_gem_spec(pkg_name, pkg_version)
s.extra_rdoc_files = [ "README" ]
s.files = %w(COPYING LICENSE README Rakefile) +
Dir.glob("{bin,doc/rdoc,test,lib}/**/*") +
Dir.glob("ext/**/*.{h,c,rb}") +
Dir.glob("examples/**/*.rb") +
Dir.glob("tools/*.rb")
Dir.glob("{bin,doc/rdoc,test}/**/*") +
Dir.glob("ext/**/*.{h,c,rb,rl}") +
Dir.glob("{examples,tools,lib}/**/*.rb")
s.require_path = "lib"
s.extensions = FileList["ext/**/extconf.rb"].to_a