diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-08 17:59:24 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-08 17:59:24 +0200 |
commit | d62833580889816914eebb61ffcfcb26496ea883 (patch) | |
tree | b638b8d17b9d204a8bbb15eb88089f0b68a29c68 /tasks/git.rake | |
download | ffi-efl-d62833580889816914eebb61ffcfcb26496ea883.zip ffi-efl-d62833580889816914eebb61ffcfcb26496ea883.tar.gz |
initial commit
Diffstat (limited to 'tasks/git.rake')
-rw-r--r-- | tasks/git.rake | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tasks/git.rake b/tasks/git.rake new file mode 100644 index 0000000..b219923 --- /dev/null +++ b/tasks/git.rake @@ -0,0 +1,38 @@ +# -*- coding: UTF-8 -*- +# +if HAVE_GIT + +namespace :git do + + # A prerequisites task that all other tasks depend upon + task :prereqs + + desc 'Show tags from the Git repository' + task :show_tags => 'git:prereqs' do |t| + puts %x/git tag/ + end + + desc 'Create a new tag in the Git repository' + task :create_tag => 'git:prereqs' do |t| + v = ENV['VERSION'] or abort 'Must supply VERSION=x.y.z' + abort "Versions don't match #{v} vs #{PROJ.version}" if v != PROJ.version + tag = "%s" % [ PROJ.version ] + msg = "Creating tag for #{PROJ.name} version #{PROJ.version}" + puts "Creating Git tag '#{tag}'" + unless system "git tag -a -m '#{msg}' #{tag}" + abort "Tag creation failed" + end +# if %x/git remote/ =~ %r/^origin\s*$/ +# unless system "git push origin #{tag}" +# abort "Could not push tag to remote Git repository" +# end +# end + end + +end # namespace :git + +#task 'gem:release' => 'git:create_tag' + +end # if HAVE_GIT + +# EOF |