Rakefile in pwwka-0.14.0 vs Rakefile in pwwka-0.15.0
- old
+ new
@@ -10,15 +10,5 @@
Gem::PackageTask.new(gemspec) {}
RSpec::Core::RakeTask.new(:spec)
Bundler::GemHelper.install_tasks
task default: :spec
-
-task :tag do
- require "pwwka/version"
- version = "v#{Pwwka::VERSION}"
- sh("git tag #{version}") { |ok,res| fail res.inspect unless ok }
- sh("git push --tags origin") { |ok,res| fail res.inspect unless ok }
-end
-task release: [ :build, :tag ] do
- sh("gem push --key rubygems_stitchfix_api_key pkg/pwwka-#{Pwwka::VERSION}.gem") { |ok,res| fail res.inspect unless ok }
-end