Sha256: 40adea1cbf2ad0efb32f0a9bd57eae10917dc76dcd71690d80b6671ebe2ad3df
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
# -*- ruby -*- require 'rubygems' require 'hoe' require 'trollop' class Hoe def extra_deps; @extra_deps.reject { |x| Array(x).first == "hoe" } end end # thanks to "Mike H" Hoe.new('trollop', Trollop::VERSION) do |p| p.rubyforge_name = 'trollop' p.author = "William Morgan" p.summary = "YAFCLAP --- yet another fine commandline argument processing library for Ruby. Trollop is designed to provide the maximal amount of GNU-style argument processing in the minimum number of lines of code (for you, the programmer)." p.description = p.paragraphs_of('README.txt', 4..5, 9..18).join("\n\n").gsub(/== SYNOPSIS/, "Synopsis") p.url = "http://trollop.rubyforge.org" p.changes = p.paragraphs_of('History.txt', 0..0).join("\n\n") p.email = "wmorgan-trollop@masanjin.net" end ## is there really no way to make a rule for this? WWW_FILES = %w(index.html README.txt FAQ.txt) task :upload_webpage => WWW_FILES do |t| sh "scp -C #{t.prerequisites * ' '} wmorgan@rubyforge.org:/var/www/gforge-projects/trollop/" end # vim: syntax=Ruby
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trollop-1.7 | Rakefile |