I'm hosting a private gem on Gemfury and would like to override rake release
task to push to my Gemfury private URL instead of Rubygems.
I'de like to keep the Git tag creation though.
Any ideas where I should begin to?
Here is what my Rakefile looks like:
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task default: :spec
task test: :spec