removing github tasks(gem tasks)

improve_associations
Marcos Tapajós 2010-01-14 09:56:28 -02:00
parent c6eaca3316
commit 581f3b748c
1 changed files with 9 additions and 0 deletions

View File

@ -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")