#158 - guard against missing page tokens when building next/prev page requests
[arvados.git] / Rakefile
index 77bc6f426fabedd558732bf7544e05022ed4782d..01e62ddd6c64ddbdab0440df15af6341ef5153b9 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -33,14 +33,7 @@ list = FileList[
 end
 PKG_FILES = list
 
-RCOV_ENABLED = !!(RUBY_PLATFORM != 'java' && RUBY_VERSION =~ /^1\.8/)
-if RCOV_ENABLED
-  task :default => 'spec:rcov'
-else
-  task :default => 'spec'
-end
+task :default => 'spec'
 
 WINDOWS = (RUBY_PLATFORM =~ /mswin|win32|mingw|bccwin|cygwin/) rescue false
 SUDO = WINDOWS ? '' : ('sudo' unless ENV['SUDOLESS'])
-
-Dir['tasks/**/*.rake'].each { |rake| load rake }