NAME
XML::Ant::BuildFile::Resource::Path - Path-like structure in an Ant build file
VERSION
version 0.212
SYNOPSIS
package My::Ant;
use Moose;
with 'XML::Rabbit::RootNode';
has paths => (
isa => 'HashRef[XML::Ant::BuildFile::Resource::Path]',
traits => 'XPathObjectMap',
xpath_query => '//classpath[@id]|//path[@id]',
xpath_key => './@id',
);
DESCRIPTION
This is a Moose type class meant for use with XML::Rabbit when processing path-like structures in an Ant build file.
METHODS
all
as_string
BUGS
Please report any bugs or feature requests on the bugtracker website http://github.com/mjgardner/XML-Ant-BuildFile/issues
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
AUTHOR
Mark Gardner <mjgardner@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by GSI Commerce.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.