1 package MooseX::Getopt::Dashes;
6 around _get_cmd_flags_for_attr => sub {
8 my ( $class, $attr, @rest ) = @_;
10 my ( $flag, @aliases ) = $class->$next($attr, @rest);
12 unless $attr->does('MooseX::Getopt::Meta::Attribute::Trait')
13 && $attr->has_cmd_flag;
15 return ( $flag, @aliases );
26 MooseX::Getopt::Dashes - convert underscores in attribute names to dashes
30 This is a version of C<MooseX::Getopt> which converts underscores in
31 attribute names to dashes when generating command line flags.
43 All complex software has bugs lurking in it, and this module is no
44 exception. If you find a bug please either email me, or add the bug
49 Dagfinn Ilmari MannsE<aring>ker E<lt>ilmari@ilmari.orgE<gt>
51 Stevan Little E<lt>stevan@iinteractive.comE<gt>
53 Yuval Kogman C<< <nuffin@cpan.org> >>
55 =head1 COPYRIGHT AND LICENSE
57 Copyright 2007-2008 by Infinity Interactive, Inc.
59 L<http://www.iinteractive.com>
61 This library is free software; you can redistribute it and/or modify
62 it under the same terms as Perl itself.