From 028633ae62eed4c77fafb9a8cdb68aa415d2c0e2 Mon Sep 17 00:00:00 2001 From: Luca Guidi Date: Sat, 12 Jul 2008 12:52:28 +0200 Subject: [PATCH] Don't try to remove the gem from working copy at the beginning of Rake install --- Rakefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Rakefile b/Rakefile index 267d5a6..0e8c9c5 100644 --- a/Rakefile +++ b/Rakefile @@ -25,7 +25,6 @@ end desc 'Build and install the gem (useful for development purposes).' task :install do require 'sashimi' - system "rm sashimi-*.gem" system "gem build sashimi.gemspec" system "sudo gem uninstall sashimi" system "sudo gem install --local --no-rdoc --no-ri sashimi-#{Sashimi::VERSION::STRING}.gem"