Re: CPAN Testers, and {build,test}_requires.

2010-05-11 Thread Daniel Pittman
p...@0ne.us p...@0ne.us writes: I see that you used Dist::Zilla v2.101040 to build the dist. Unfortunately, there was a bug in the way dzil managed the requires. It simply deleted the prereqs instead of managing them intelligently. [...] So, all you need to do is re-release your dist with

Re: XML::Reader

2010-05-11 Thread Klaus
On Tue, May 11, 2010 at 7:49 AM, Jonathan Rockway j...@jrock.us wrote: * On Tue, Apr 27 2010, Klaus wrote: I have released XML::Reader (ver 0.34) http://search.cpan.org/~keichner/XML-Reader-0.34/lib/XML/Reader.pmhttp://search.cpan.org/%7Ekeichner/XML-Reader-0.34/lib/XML/Reader.pm by the

Re: CPAN Testers, and {build,test}_requires.

2010-05-11 Thread Aristotle Pagaltzis
* David Golden xda...@gmail.com [2010-05-11 15:40]: On Tue, May 11, 2010 at 9:04 AM, Aristotle Pagaltzis pagalt...@gmx.de wrote: * Daniel Pittman dan...@rimspace.net [2010-05-11 05:00]: Also, the approach Dist::Zilla takes with the 'configure_requires' and 'build_requires' keys is to remove

Re: XML::Reader

2010-05-11 Thread Klaus
On Tue, May 11, 2010 at 4:14 PM, Dana Hudes dhu...@hudes.org wrote: Klaus, Thanks for contributing to CPAN Dana, Thanks for your message From: Klaus klau...@gmail.com Date: Tue, 11 May 2010 10:10:33 +0200 I would position XML::Reader in the same space as XML::Twig and XML::TokeParser.

Usage of wantarray

2010-05-11 Thread Lutz Gehlen
Hello everybody, recently, I read the following statement in a CPAN Ratings entry: this package also uses wantarray (a transgression amongst interface sensibilities). I also sometimes use wantarray and don't see anything bad about it if the behaviour is documented (which should also be the case

Re: XML::Reader

2010-05-11 Thread Dana Hudes
Klaus, Thanks for contributing to CPAN On the question of callbacks: This is Perl, there's more than way to do it (whatever 'it' is ). That said the use of callbacks is very Perlish. Indeed Perl itself uses callbacks in it's builtins: look at sort(), the comparison function is a callback.

Re: XML::Reader

2010-05-11 Thread Jonathan Rockway
* On Tue, May 11 2010, Klaus wrote: However, unlike XML::Twig, XML::Reader does not rely on callback functions to parse the XML. With XML::Reader you loop over the XML-document yourself and the resulting XML-elements (and/or XML-subtrees) are represented in text format. This style of