Enable UTF-8 for JSON::XS serializer
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / Serialize / JSON / XS.pm
index 4e7ab1c..26cb71a 100644 (file)
@@ -4,14 +4,13 @@ use Moose;
 use namespace::autoclean;
 
 extends 'Catalyst::Action::Serialize::JSON';
-use JSON::XS qw(encode_json);
+use JSON::XS ();
 
-our $VERSION = '0.81';
+our $VERSION = '1.00';
 $VERSION = eval $VERSION;
 
-sub serialize {
-    my $self = shift;
-    encode_json( shift );
-}
+sub _build_encoder { return JSON::XS->new->utf8->convert_blessed }
+
+__PACKAGE__->meta->make_immutable;
 
 1;