From 86d517adf42e2297318da13fdf149237ecbedb0f Mon Sep 17 00:00:00 2001 From: Mike Dirolf Date: Wed, 2 Dec 2009 10:12:55 -0500 Subject: [PATCH] minor: don't use sudo for rake installation tasks --- Rakefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Rakefile b/Rakefile index c90e827..9680266 100644 --- a/Rakefile +++ b/Rakefile @@ -22,7 +22,7 @@ task :test do puts "To test the pure ruby driver: \nrake test:ruby" end -namespace :test do +namespace :test do desc "Test the driver with the c extension enabled." task :c do @@ -34,7 +34,7 @@ namespace :test do end desc "Test the driver using pure ruby (no c extension)" - task :ruby do + task :ruby do ENV['C_EXT'] = nil Rake::Task['test:unit'].invoke Rake::Task['test:functional'].invoke @@ -97,7 +97,7 @@ namespace :gem do task :install do sh <