rakefile.rb in buildar-0.0.2.1 vs rakefile.rb in buildar-0.0.2.2

- old
+ new

@@ -111,9 +111,16 @@ raise "multiple candidates found matching #{fragment}" end } end -task :release => [:build, :tag, :publish] +task :gitpush do + # may prompt + sh "git push origin" + # this kills the automation + # consider a timeout? +end + +task :release => [:build, :tag, :publish, :gitpush] task :release_patch => [:bump_patch, :release] task :release_minor => [:bump_minor, :release] task :release_major => [:bump_major, :release]