Revision history for Perl extension MooseX-Getopt
+ * MooseX::Getopt::Dashes
+ - Document that using a cmd_flag argument to attributes can be used to
+ override the tr/_/-/ replacement ::Dashes does on attribute names
+
0.26 Thu. Dec 10 2009
* MooseX::Getopt::Basic
- Fix bug with attribute names containing upper case letters.
use Moose;
with 'MooseX::Getopt::Dashes';
+ # Will be called as --some-thingy, not --some_thingy
+ has 'some_thingy' => (
+ is => 'ro',
+ isa => 'Str',
+ default => 'foo'
+ );
+
+ # Will be called as --another_thingy, not --another-thingy
+ has 'another_thingy' => (
+ traits => [ 'Getopt' ],
+ cmd_flag => 'another_thingy'
+ is => 'ro',
+ isa => 'Str',
+ default => 'foo'
+ );
+
# use as MooseX::Getopt
=head1 DESCRIPTION
This is a version of C<MooseX::Getopt> which converts underscores in
attribute names to dashes when generating command line flags.
+You can selectively disable this on a per-attribute basis by supplying
+a L<cmd_flag|MooseX::Getopt::Meta::Attribute/METHODS> argument with
+the command flag you'd like for a given attribute. No underscore to
+dash replacement will be done on the C<cmd_flag>.
+
=head1 METHODS
=over 4
Yuval Kogman C<< <nuffin@cpan.org> >>
+E<AElig>var ArnfjE<ouml>rE<eth> Bjarmason E<lt>avar@cpan.orgE<gt>
+
=head1 COPYRIGHT AND LICENSE
Copyright 2007-2008 by Infinity Interactive, Inc.
use strict;
use warnings;
-use Test::More tests => 3;
+use Test::More tests => 5;
use Test::Exception;
with 'MooseX::Getopt::Dashes';
has 'some_thingy' => ( is => 'ro', isa => 'Str', default => 'foo' );
+ has 'another_thingy' => ( is => 'ro', isa => 'Str', default => 'foo', cmd_flag => 'another_thingy', traits => [ 'Getopt' ], );
}
{
local @ARGV = (qw/--some-thingy bar/);
- lives_and { is( App->new_with_options->some_thingy, 'bar') } 'Dash in option name';
+ lives_and { is( App->new_with_options->some_thingy, 'bar') } 'Dash in option name';
}
{
- local @ARGV = (qw/--some_thingy bar/);
- throws_ok { App->new_with_options } qr/Unknown option: some_thingy/;
+ local @ARGV = (qw/--some_thingy bar/);
+ throws_ok { App->new_with_options } qr/Unknown option: some_thingy/;
+}
+
+{
+ local @ARGV = (qw/--another_thingy bar/);
+ lives_and { is( App->new_with_options->another_thingy, 'bar' ) } 'Underscore in option name';
+}
+
+{
+ local @ARGV = (qw/--another-thingy bar/);
+ throws_ok { App->new_with_options } qr/Unknown option: another-thingy/;
}