1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

Have the Rake GemPackageTask also create archives.

git-svn-id: svn://hamptoncatlin.com/haml/trunk@278 7063305b-7217-0410-af8c-cdc13e5119b9
This commit is contained in:
nex3 2007-01-05 16:47:11 +00:00
parent 6b13b11397
commit c679b67740

View file

@ -87,7 +87,11 @@ unless ARGV[0] == 'benchmark'
spec.test_files = FileList['test/**/*_test.rb'].to_a
end
Rake::GemPackageTask.new(spec) { |pkg| }
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_zip = true
pkg.need_tar_gz = true
pkg.need_tar_bz2 = true
end
# ----- Documentation -----