diff --git a/Rakefile b/Rakefile index ff0a86e..83c104d 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