X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FStorage%2FFormat%2FYAML.pm;h=a311a3ce080014c84a184e2deb269a244ce742f5;hb=e44b5f5498b782752d2c91b6796698c86143a2f0;hp=3cccc52a677bcd24e8e34589c3700d8ef5a024aa;hpb=1f3074ea2b80c4c8dfc081414f87285bc7892c82;p=gitmo%2FMooseX-Storage.git diff --git a/lib/MooseX/Storage/Format/YAML.pm b/lib/MooseX/Storage/Format/YAML.pm index 3cccc52..a311a3c 100644 --- a/lib/MooseX/Storage/Format/YAML.pm +++ b/lib/MooseX/Storage/Format/YAML.pm @@ -1,4 +1,3 @@ - package MooseX::Storage::Format::YAML; use Moose::Role; @@ -6,12 +5,9 @@ use Moose::Role; # Tests break because tye YAML is invalid...? # -dcp -use Best [ - [ qw[YAML::Syck YAML] ], - [ qw[Load Dump] ] -]; +use YAML::Any qw(Load Dump); -our $VERSION = '0.02'; +our $VERSION = '0.32'; our $AUTHORITY = 'cpan:STEVAN'; requires 'pack'; @@ -27,6 +23,8 @@ sub freeze { Dump( $self->pack(@args) ); } +no Moose::Role; + 1; __END__ @@ -35,39 +33,39 @@ __END__ =head1 NAME -MooseX::Storage::Format::YAML +MooseX::Storage::Format::YAML - A YAML serialization role =head1 SYNOPSIS package Point; use Moose; use MooseX::Storage; - + with Storage('format' => 'YAML'); - + has 'x' => (is => 'rw', isa => 'Int'); has 'y' => (is => 'rw', isa => 'Int'); - + 1; - + my $p = Point->new(x => 10, y => 10); - - ## methods to freeze/thaw into + + ## methods to freeze/thaw into ## a specified serialization format ## (in this case YAML) - + # pack the class into a YAML string - $p->freeze(); + $p->freeze(); # ---- - # __CLASS__: "Point" + # __CLASS__: "Point" # x: 10 - # y: 10 - + # y: 10 + # unpack the JSON string into a class - my $p2 = Point->thaw(<thaw(<