From d461c4d4b34e9316ad9e9fa0320678d999b5868f Mon Sep 17 00:00:00 2001 From: skaufman Date: Sat, 14 Mar 2015 00:54:01 +0000 Subject: make json an attr to allow dependency injection --- Changes | 2 ++ lib/Spreadsheet/Template.pm | 16 +++++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 06c2dfe..7ee1304 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,8 @@ Revision history for Spreadsheet-Template {{$NEXT}} + - add json as a param instead of hardcoding from_json. + 0.04 2014-09-10 - support more border types (merrilymeredith, #5) diff --git a/lib/Spreadsheet/Template.pm b/lib/Spreadsheet/Template.pm index 4b879c8..ebbf73b 100644 --- a/lib/Spreadsheet/Template.pm +++ b/lib/Spreadsheet/Template.pm @@ -404,6 +404,20 @@ has _processor => ( }, ); +=attr json + +Instance of a JSON class that will handle decoding. Defaults to an instance of L. +Passing in a JSON obj with ->relaxed(1) set will allow for trailing commas in your templates. + +=cut + +has json => ( + is => 'ro', + default => sub { + return JSON->new; + } +); + sub _writer { my $self = shift; my $class = $self->writer_class; @@ -426,7 +440,7 @@ sub render { my $contents = $self->_processor->process($template, $vars); # not decode_json, since we expect that we are already being handed a # character string (decode_json also decodes utf8) - my $data = from_json($contents); + my $data = $self->json->decode($contents); return $self->_writer->write($data); } -- cgit v1.2.3