Rakefile in iniparse-1.3.2 vs Rakefile in iniparse-1.3.3
- old
+ new
@@ -49,10 +49,10 @@
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 commit --allow-empty -a -m 'Release #{version}'"
sh "git tag v#{version}"
sh "git push origin master"
sh "git push origin v#{version}"
puts "Push to Rubygems.org with"