Sha256: a6e7402dcb342769d27550a28bb503c67b2311bc26f3cab8f1f06b82dd17b3de

Contents?: true

Size: 1.26 KB

Versions: 1

Compression:

Stored size: 1.26 KB

Contents

#!/usr/bin/env ratch

# Publish website to rubyforge
#
# This task publishes the source dir (deafult 'doc')
# to a rubyforge website.

main :publish do
  config = configuration['publish']

  project     = config['project']
  subdir      = config['subdir']
  source      = config['source'] || "doc"
  username    = config['username'] || ENV['RUBYFORGE_USERNAME']
  protect     = %w{usage statcvs statsvn robot.txt wiki}
  exclude     = %w{.svn}

  abort "no project"  unless project
  abort "no username (you can also set RUBYFORGE_USERNAME evironament variable)" unless username

  if subdir
    destination = File.join(project, subdir)
  else
    destination = project
  end

  dir = source.chomp('/') + '/'
  url = "#{username}@rubyforge.org:/var/www/gforge-projects/#{destination}"

  op = ['-rLvz', '--delete-after']  # maybe -p ?

  # add filter options. The commandline version didn't seem
  # to work, so I opted for creating an .rsync_filter file for
  # all cases.

  filter_file = File.join(source,'.rsync-filter')

  unless file?(filter_file)
    File.open(filter_file, 'w') do |f|
      exclude.map{|e| f << "- #{e}\n"}
      protect.map{|e| f << "P #{e}\n"}
    end
  end

  op << "--filter='dir-merge #{filter_file}'"

  args = op + [dir, url]

  rsync(*args.to_params)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tmail-1.2.1 script/publish