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:
parent
6b13b11397
commit
c679b67740
1 changed files with 5 additions and 1 deletions
6
Rakefile
6
Rakefile
|
@ -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 -----
|
||||
|
||||
|
|
Loading…
Reference in a new issue