From ae1f407ecc4d03a42edc6ea009d1502e4ade10b5 Mon Sep 17 00:00:00 2001 From: raggi Date: Wed, 28 Jan 2009 02:13:13 +0000 Subject: [PATCH] Don't need to clean + clobber by default --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 14fff2139..5ca8ec833 100644 --- a/Rakefile +++ b/Rakefile @@ -50,7 +50,7 @@ if Gem.path.any? {|path| %r(^#{Regexp.escape path}) =~ __DIR__} task :default => :gem_build else desc "Build gemspec, then build eventmachine, then run tests." - task :default => [:gemspec, :build, :test] + task :default => [:build, :test] end desc ":default build when running under rubygems."