summaryrefslogtreecommitdiff
path: root/lib/Data/MultiValued/AttributeTrait/Tags.pm
blob: 4355ebedd4d8a9f7372552a52b0fe8ce98dcfea9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package Data::MultiValued::AttributeTrait::Tags; 
BEGIN {
  $Data::MultiValued::AttributeTrait::Tags::VERSION = '0.0.1';
}
BEGIN {
  $Data::MultiValued::AttributeTrait::Tags::DIST = 'Data-MultiValued';
}
use Moose::Role;
use Data::MultiValued::Tags;
with 'Data::MultiValued::AttributeTrait';
 
sub multivalue_storage_class 'Data::MultiValued::Tags' };
sub opts_to_pass_set qw(tag) }
sub opts_to_pass_get qw(tag) }
 
package Moose::Meta::Attribute::Custom::Trait::MultiValued::Tags; 
BEGIN {
  $Moose::Meta::Attribute::Custom::Trait::MultiValued::Tags::VERSION = '0.0.1';
}
BEGIN {
  $Moose::Meta::Attribute::Custom::Trait::MultiValued::Tags::DIST = 'Data-MultiValued';
}{
sub register_implementation 'Data::MultiValued::AttributeTrait::Tags' }
}
 
1;
 
__END__
=pod
 
=head1 NAME
 
Data::MultiValued::AttributeTrait::Tags
 
=head1 VERSION
 
version 0.0.1
 
=head1 AUTHOR
 
Gianni Ceccarelli <dakkar@thenautilus.net>
 
=head1 COPYRIGHT AND LICENSE
 
This software is copyright (c) 2011 by Net-a-porter.com.
 
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
 
=cut