Sha256: 131fdb57350b89cd5df067227d559c7efc6cc519f1913315ba87085723fb6ef8

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

# $Id$

if PROJ.svn.path and system("svn --version 2>&1 > #{DEV_NULL}")

unless PROJ.svn.root
  info = %x/svn info ./
  m = %r/^Repository Root:\s+(.*)$/.match(info)
  PROJ.svn.root = (m.nil? ? '' : m[1])
end
PROJ.svn.root = File.join(PROJ.svn.root, PROJ.svn.path) unless PROJ.svn.path.empty?

namespace :svn do

  desc 'Show tags from the SVN repository'
  task :show_tags do |t|
    tags = %x/svn list #{File.join(PROJ.svn.root, PROJ.svn.tags)}/
    tags.gsub!(%r/\/$/, '')
    tags = tags.split("\n").sort {|a,b| b <=> a}
    puts tags
  end

  desc 'Create a new tag in the SVN repository'
  task :create_tag 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

    svn = PROJ.svn
    trunk = File.join(svn.root, svn.trunk)
    tag = "%s-%s" % [PROJ.name, PROJ.version]
    tag = File.join(svn.root, svn.tags, tag)
    msg = "Creating tag for #{PROJ.name} version #{PROJ.version}"

    puts "Creating SVN tag '#{tag}'"
    unless system "svn cp -m '#{msg}' #{trunk} #{tag}"
      abort "Tag creation failed" 
    end
  end

end  # namespace :svn

task 'gem:release' => 'svn:create_tag'

end  # if PROJ.svn.path

# EOF

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
filterfish-logging-0.9.8 tasks/svn.rake