Rakefile in boom-0.4.0 vs Rakefile in boom-0.5.0
- old
+ new
@@ -73,12 +73,12 @@
task :release => :build do
unless `git branch` =~ /^\* master$/
puts "You must be on the master branch to release!"
exit!
end
- # sh "git commit --allow-empty -a -m 'Release #{version}'"
- # sh "git tag v#{version}"
- # sh "git push origin master"
+ sh "git commit --allow-empty -a -m 'Release #{version}'"
+ sh "git tag v#{version}"
+ sh "git push origin master"
sh "git push origin v#{version}"
sh "gem push pkg/#{name}-#{version}.gem"
end
desc "Build #{gem_file} into the pkg directory"