X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FDeserialize%2FXML%2FSimple.pm;h=03057e5923a1c9eefc8d10a6d5f9453da998ce65;hb=2474828604a779657c1bfa42b1875951ccd43383;hp=c4aad0c92125e3cf0a211e64f07b1965f73aedd9;hpb=10bcd217c37d68aabbb0db8a5a7e233e679cb945;p=catagits%2FCatalyst-Action-REST.git diff --git a/lib/Catalyst/Action/Deserialize/XML/Simple.pm b/lib/Catalyst/Action/Deserialize/XML/Simple.pm index c4aad0c..03057e5 100644 --- a/lib/Catalyst/Action/Deserialize/XML/Simple.pm +++ b/lib/Catalyst/Action/Deserialize/XML/Simple.pm @@ -1,9 +1,12 @@ package Catalyst::Action::Deserialize::XML::Simple; -use strict; -use warnings; +use Moose; +use namespace::autoclean; -use base 'Catalyst::Action'; +extends 'Catalyst::Action'; + +our $VERSION = '0.88'; +$VERSION = eval $VERSION; sub execute { my $self = shift; @@ -41,4 +44,6 @@ sub execute { return 1; } +__PACKAGE__->meta->make_immutable; + 1;