File Coverage

blib/lib/MooseX/Storage/Format/YAML.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 2 2 100.0
total 20 20 100.0


line stmt bran cond sub pod time code
1             package MooseX::Storage::Format::YAML;
2             # ABSTRACT: A YAML serialization role
3              
4             our $VERSION = '0.53';
5              
6 4     4   2178 use Moose::Role;
  4         10  
  4         31  
7              
8             # When I add YAML::LibYAML
9             # Tests break because tye YAML is invalid...?
10             # -dcp
11              
12 4     4   18395 use YAML::Any qw(Load Dump);
  4         8  
  4         34  
13 4     4   1285 use namespace::autoclean;
  4         9  
  4         32  
14              
15             requires 'pack';
16             requires 'unpack';
17              
18             sub thaw {
19 4     4 1 17780 my ( $class, $yaml, @args ) = @_;
20 4         19 $class->unpack( Load($yaml), @args );
21             }
22              
23             sub freeze {
24 4     4 1 17628 my ( $self, @args ) = @_;
25 4         23 Dump( $self->pack(@args) );
26             }
27              
28             1;
29              
30             __END__
31              
32             =pod
33              
34             =encoding UTF-8
35              
36             =head1 NAME
37              
38             MooseX::Storage::Format::YAML - A YAML serialization role
39              
40             =head1 VERSION
41              
42             version 0.53
43              
44             =head1 SYNOPSIS
45              
46             package Point;
47             use Moose;
48             use MooseX::Storage;
49              
50             with Storage('format' => 'YAML');
51              
52             has 'x' => (is => 'rw', isa => 'Int');
53             has 'y' => (is => 'rw', isa => 'Int');
54              
55             1;
56              
57             my $p = Point->new(x => 10, y => 10);
58              
59             ## methods to freeze/thaw into
60             ## a specified serialization format
61             ## (in this case YAML)
62              
63             # pack the class into a YAML string
64             $p->freeze();
65              
66             # ----
67             # __CLASS__: "Point"
68             # x: 10
69             # y: 10
70              
71             # unpack the JSON string into a class
72             my $p2 = Point->thaw(<<YAML);
73             ----
74             __CLASS__: "Point"
75             x: 10
76             y: 10
77             YAML
78              
79             =head1 METHODS
80              
81             =over 4
82              
83             =item B<freeze>
84              
85             =item B<thaw ($yaml)>
86              
87             =back
88              
89             =head1 SUPPORT
90              
91             Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Storage>
92             (or L<bug-MooseX-Storage@rt.cpan.org|mailto:bug-MooseX-Storage@rt.cpan.org>).
93              
94             There is also a mailing list available for users of this distribution, at
95             L<http://lists.perl.org/list/moose.html>.
96              
97             There is also an irc channel available for users of this distribution, at
98             L<C<#moose> on C<irc.perl.org>|irc://irc.perl.org/#moose>.
99              
100             =head1 AUTHORS
101              
102             =over 4
103              
104             =item *
105              
106             Chris Prather <chris.prather@iinteractive.com>
107              
108             =item *
109              
110             Stevan Little <stevan.little@iinteractive.com>
111              
112             =item *
113              
114             יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
115              
116             =back
117              
118             =head1 COPYRIGHT AND LICENSE
119              
120             This software is copyright (c) 2007 by Infinity Interactive, Inc.
121              
122             This is free software; you can redistribute it and/or modify it under
123             the same terms as the Perl 5 programming language system itself.
124              
125             =cut