From 581f3b748c0e3a7c4076e3557741a217452c2dec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20Tapaj=C3=B3s?= Date: Thu, 14 Jan 2010 09:56:28 -0200 Subject: [PATCH] removing github tasks(gem tasks) --- Rakefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Rakefile b/Rakefile index 51b4973..6936814 100644 --- a/Rakefile +++ b/Rakefile @@ -56,3 +56,12 @@ end desc "Run the rspec" task :default => :spec + +module Rake + def self.remove_task(task_name) + Rake.application.instance_variable_get('@tasks').delete(task_name.to_s) + end +end + +Rake.remove_task("github:release") +Rake.remove_task("release") \ No newline at end of file