Next | Query returned 21 messages, browsing 21 to 30 | previous

History of commit frequency

CVS Commit History:


   2012-09-10 11:58:38 by Jens Rehsack | Files touched by this commit (3)
Log message:
Importing package for CPAN module MooseX::Has::Options version 0.002 into
devel/p5-MooseX-Has-Options.

MooseX::Has::Options provides a succinct syntax for declaring options for
Moose attributes. It hijacks the has function imported by Moose and replaces
it with one that understands following options syntax:

    use Moose;
    use MooseX::Has::Options;

    has 'some_attribute' => (
        qw(:ro :required),
        isa => 'Str',
        ...
    );

This will converted into:

    use Moose;
    use MooseX::Has::Options;

    has 'some_attribute' => (
        is => 'ro',
	required => 1,
        isa => 'Str',
        ...
    );

Options must come in the beginning of the argument list.
MooseX::Has::Options will stop searching for options after the
first alphanumeric string that does not start with a colon.

Next | Query returned 21 messages, browsing 21 to 30 | previous