removing github tasks(gem tasks)
This commit is contained in:
parent
c6eaca3316
commit
581f3b748c
9
Rakefile
9
Rakefile
|
@ -56,3 +56,12 @@ end
|
||||||
|
|
||||||
desc "Run the rspec"
|
desc "Run the rspec"
|
||||||
task :default => :spec
|
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")
|
Loading…
Reference in a new issue