Sha256: f1cb93e28d571b7a14a103efa29bd174c0ca467ab4c8ae52a4c12f7190297cbf
Contents?: true
Size: 848 Bytes
Versions: 1
Compression:
Stored size: 848 Bytes
Contents
# -*- ruby -*- require 'rubygems' require 'hoe' dir = File.dirname(__FILE__) lib_path = File.expand_path("#{dir}/lib") $LOAD_PATH.unshift lib_path unless $LOAD_PATH.include?(lib_path) require 'pdf/storycards' ENV["VERSION"] = PDF::Storycards::VERSION Hoe.new('pdf-storycards', PDF::Storycards::VERSION) do |p| p.rubyforge_name = 'pdf-storycards' p.author = 'Luke Melia' p.email = 'luke@lukemelia.com' p.summary = 'Utilities for generating printable story cards for agile planning and measurement' p.description = p.paragraphs_of('README.txt', 1..5).join("\n\n") p.url = 'http://rubyforge.org/projects/pdf-storycards/' p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") p.extra_deps << ['pdf-writer', '>= 1.1.7'] p.extra_deps << ['rspec', '>= 1.1.1'] p.remote_rdoc_dir = '' # Release to root end # vim: syntax=Ruby
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pdf-storycards-0.1.0 | Rakefile |