Fix build using Hoe by providing values for "email" and "author".

This commit is contained in:
jlam 2008-04-21 15:42:17 +00:00
parent 574653540b
commit 406ea611f1
2 changed files with 15 additions and 1 deletions

View file

@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.1.1.1 2008/04/04 15:18:14 jlam Exp $
$NetBSD: distinfo,v 1.2 2008/04/21 15:42:17 jlam Exp $
SHA1 (ParseTree-2.1.1.gem) = 066a6c255192c88280ed5482f81bf2c7082727f3
RMD160 (ParseTree-2.1.1.gem) = 0f448046aad37e859b4497b6d70b82d8a65dd972
Size (ParseTree-2.1.1.gem) = 44544 bytes
SHA1 (patch-aa) = d3ea4077ab7ae6e93eb0dca3094af4424798dbca

View file

@ -0,0 +1,13 @@
$NetBSD: patch-aa,v 1.1 2008/04/21 15:42:17 jlam Exp $
--- Rakefile.orig 2008-04-21 11:39:20.000000000 -0400
+++ Rakefile
@@ -8,6 +8,8 @@ require './lib/parse_tree.rb'
Hoe.new("ParseTree", ParseTree::VERSION) do |p|
p.rubyforge_name = "parsetree"
+ p.author = "Ryan Davis"
+ p.email = "support@zenspider.com"
p.summary = "Extract and enumerate ruby parse trees."
p.summary = p.paragraphs_of("README.txt", 2).join("\n\n")
p.description = p.paragraphs_of("README.txt", 2..6, 8).join("\n\n")