Revision history for Perl extension MooseX-Getopt
+NEXT
+ * MooseX::Getopt
+ - change it to a MooseX::Role::Parameterized, so that it accepts
+ 'getopt_conf' parameter (Damien Krotkine)
+ - make it use 'pass_through' by default
+
0.37 Wed 30 Mar 2011
* Fix missing dependency. (RT#67077)
author = Chris Prather <perigrin@cpan.org>
author = Karen Etheridge <ether@cpan.org>
author = Jonathan Swartz <swartz@pobox.com>
+author = Damien Krotkine <dams@cpan.org>
license = Perl_5
copyright_holder = Infinity Interactive, Inc
package MooseX::Getopt;
# ABSTRACT: A Moose role for processing command line options
-use Moose::Role 0.56;
+use MooseX::Role::Parameterized;
-with 'MooseX::Getopt::GLD';
+parameter getopt_conf => (
+ isa => 'ArrayRef[Str]',
+ default => sub { [ 'pass_through' ] },
+);
+
+role {
+
+ my $p = shift;
+ my $getopt_conf = $p->getopt_conf;
+
+ with 'MooseX::Getopt::GLD' => { getopt_conf => $getopt_conf };
+
+};
no Moose::Role;
with 'MooseX::Getopt';
+ # or
+
+ with 'MooseX::Getopt' => { getopt_conf => [ 'getopt_compat', 'bundling', ... ] };
+
has 'out' => (is => 'rw', isa => 'Str', required => 1);
has 'in' => (is => 'rw', isa => 'Str', required => 1);
precendence order: commandline overrides configfile, which
overrides explicit new_with_options parameters.
+=head2 Global options
+
+This role is a parameterized role. It accepts a HashRef of parameters. For now
+there is only one configuration parameter, C<getopt_conf>. This parameter is an
+ArrayRef of strings, which are L<Getopt::Long> configuraion options (see
+"Configuring Getopt::Long" in L<Getopt::Long>). See L<SYNOPSIS> for an example.
+
=head2 Supported Type Constraints
=over 4
=head1 OPTIONS
-This role is a parameterized role. It accepts one configuration parameter,
-C<getopt_conf>. This parameter is an ArrayRef of strings, which are
-L<Getopt::Long> configuraion options (see "Configuring Getopt::Long" in
-L<Getopt::Long>)
+This role is a parameterized role. It accepts a HashRef of parameters. For now
+there is only one configuration parameter, C<getopt_conf>. This parameter is an
+ArrayRef of strings, which are L<Getopt::Long> configuraion options (see
+"Configuring Getopt::Long" in L<Getopt::Long>). See L<SYNOPSIS> for an example.
=cut
use Moose::Role;
-with 'MooseX::Getopt';
+with 'MooseX::Getopt' => { getopt_conf => [] };
around '_compute_getopt_attrs' => sub {
my $next = shift;
attributes if they explicitly set as C<Getopt> attributes. All other attributes
are ignored by the command line handler.
+Also, no L<Getopt::Long> global option is activated. Especially, 'pass_through' is
+not set.
+
=cut
use Scalar::Util 'looks_like_number';
- with 'MooseX::Getopt';
+ with 'MooseX::Getopt' => { getopt_conf => [] };
subtype 'ArrayOfInts'
=> as 'ArrayRef'
package App;
use Moose;
- with 'MooseX::Getopt';
+ with 'MooseX::Getopt' => { getopt_conf => [] };
has 'data' => (
metaclass => 'Getopt',
package App;
use Moose;
- with 'MooseX::Getopt';
+ with 'MooseX::Getopt' => { getopt_conf => [] };
has 'data' => (
traits => ['Getopt'],