From ba3e29d2a3d4af9c217fb429c135b8045dcc046d Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Wed, 19 Nov 2008 15:59:24 -0500 Subject: [PATCH] Changing rake default from verify_rcov to spec --- Rakefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Rakefile b/Rakefile index ff0a86e4..83c104db 100644 --- a/Rakefile +++ b/Rakefile @@ -67,10 +67,6 @@ RCov::VerifyTask.new(:verify_rcov => :rcov) do |t| t.threshold = 96.2 # Make sure you have rcov 0.7 or higher! end -task :default do - Rake::Task["verify_rcov"].invoke -end - desc 'Install the package as a gem.' task :install_gem => [:clean, :package] do gem = Dir['pkg/*.gem'].first @@ -90,4 +86,6 @@ end desc "Run specs using jruby" task "spec:jruby" do system "jruby -S rake spec" -end \ No newline at end of file +end + +task :default => :spec \ No newline at end of file