about summary refs log tree commit homepage
path: root/projects/gem_plugin/Rakefile
diff options
context:
space:
mode:
authorzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-06-10 07:02:19 +0000
committerzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-06-10 07:02:19 +0000
commit375a0b5c5ed4316c1a1a59735f7767e2aeadaf3b (patch)
treee87129f5f55b2890f53da8ca1a6f9c511d80bbe6 /projects/gem_plugin/Rakefile
parentdb9bf40124ebc310e30913087e24071666b8867b (diff)
downloadunicorn-375a0b5c5ed4316c1a1a59735f7767e2aeadaf3b.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@237 19e92222-5c0b-0410-8929-a290d50e31e9
Diffstat (limited to 'projects/gem_plugin/Rakefile')
-rw-r--r--projects/gem_plugin/Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/gem_plugin/Rakefile b/projects/gem_plugin/Rakefile
index ed3fd31..56ab652 100644
--- a/projects/gem_plugin/Rakefile
+++ b/projects/gem_plugin/Rakefile
@@ -29,11 +29,11 @@ setup_gem(name, version) do |spec|
 end
 
 task :install => [:test, :package] do
-  sh %{sudo gem install pkg/#{name}-#{version}}
+  sh %{gem install pkg/#{name}-#{version}}
 end
 
 task :uninstall => [:clean] do
-  sh %{sudo gem uninstall #{name}}
+  sh %{gem uninstall #{name}}
 end
 
 task :site => [:rerdoc] do