From dab1d8dcc6030a5c1f5e88744d3c40d771be23a3 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Tue, 16 Nov 2010 16:03:57 -0800 Subject: Add some sanity checks to the gem push script --- tasks/release.rb | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'tasks') diff --git a/tasks/release.rb b/tasks/release.rb index 4c038f51f5..8073965a50 100644 --- a/tasks/release.rb +++ b/tasks/release.rb @@ -2,6 +2,7 @@ FRAMEWORKS = %w( activesupport activemodel activerecord activeresource actionpac root = File.expand_path('../../', __FILE__) version = File.read("#{root}/RAILS_VERSION").strip +tag = "v#{version}" directory "dist" @@ -52,15 +53,28 @@ directory "dist" sh "gem install #{gem}" end + task :prep_release => [:ensure_clean_state, :build] + task :push => :build do sh "gem push #{gem}" end end end -namespace :git do +namespace :release do + task :ensure_clean_state do + unless `git status -s | grep -v RAILS_VERSION`.strip.empty? + abort "[ABORTING] `git status` reports a dirty tree. Make sure all changes are committed" + end + + unless ENV['SKIP_TAG'] || `git tag | grep #{tag}`.strip.empty? + abort "[ABORTING] `git tag` shows that #{tag} already exists. Has this version already\n"\ + " been released? Git tagging can be skipped by setting SKIP_TAG=1" + end + end + task :tag do - sh "git tag v#{version}" + sh "git tag #{tag}" end end -- cgit v1.2.3