| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
Dist::Zilla::Stash::Rights - a stash of your default licensing terms
version 4.200008
Ricardo SIGNES <rjbs@cpan.org>
This software is copyright (c) 2011 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Dist-Zilla documentation | Contained in the Dist-Zilla distribution. |
package Dist::Zilla::Stash::Rights; BEGIN { $Dist::Zilla::Stash::Rights::VERSION = '4.200008'; } use Moose; with 'Dist::Zilla::Role::Stash'; # ABSTRACT: a stash of your default licensing terms has license_class => ( is => 'ro', isa => 'Str', required => 1, ); has copyright_holder => ( is => 'ro', isa => 'Str', required => 1, ); has copyright_year => ( is => 'ro', isa => 'Int', ); 1; __END__