You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by lu...@apache.org on 2010/07/09 01:42:02 UTC

svn commit: r962265 - /incubator/deltacloud/trunk/server/Rakefile

Author: lutter
Date: Thu Jul  8 23:42:01 2010
New Revision: 962265

URL: http://svn.apache.org/viewvc?rev=962265&view=rev
Log:
Added GemPackageTask into RakeFile

Modified:
    incubator/deltacloud/trunk/server/Rakefile

Modified: incubator/deltacloud/trunk/server/Rakefile
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/server/Rakefile?rev=962265&r1=962264&r2=962265&view=diff
==============================================================================
--- incubator/deltacloud/trunk/server/Rakefile (original)
+++ incubator/deltacloud/trunk/server/Rakefile Thu Jul  8 23:42:01 2010
@@ -21,6 +21,7 @@
 require 'rake'
 require 'cucumber'
 require 'rake/testtask'
+require 'rake/gempackagetask'
 require 'cucumber/rake/task'
 
 desc "Run basic unit tests"
@@ -48,6 +49,11 @@ Cucumber::Rake::Task.new(:rcov) do |t|
   t.rcov_opts << %[-o "tmp/coverage"]
 end
 
+load 'deltacloud-core.gemspec'
+Rake::GemPackageTask.new(@spec) do |pkg|
+  pkg.need_tar = true
+end
+
 desc "Install API"
 task :install, [:install_dir, :bin_dir] do |t, args|