summaryrefslogtreecommitdiffstats
path: root/tasks/git.rake
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-05-19 10:23:12 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-05-19 10:23:12 +0200
commit4b29c337347b40528d672cd2e2b52b1c9efe33e5 (patch)
tree8c4bfd0e73790754a834491c69283767d173cde6 /tasks/git.rake
parenta378e73d9da612960d0cf3eef5011c13c0139c39 (diff)
downloadffi-efl-4b29c337347b40528d672cd2e2b52b1c9efe33e5.zip
ffi-efl-4b29c337347b40528d672cd2e2b52b1c9efe33e5.tar.gz
goto bundler
Diffstat (limited to 'tasks/git.rake')
-rw-r--r--tasks/git.rake38
1 files changed, 0 insertions, 38 deletions
diff --git a/tasks/git.rake b/tasks/git.rake
deleted file mode 100644
index b219923..0000000
--- a/tasks/git.rake
+++ /dev/null
@@ -1,38 +0,0 @@
-# -*- 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