summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorskaufman <sam@socialflow.com>2015-03-14 00:54:01 +0000
committerskaufman <sam@socialflow.com>2015-03-14 00:54:01 +0000
commitd461c4d4b34e9316ad9e9fa0320678d999b5868f (patch)
tree3ffbd17316f588e4c53d82ac752a09bc7cb6c62c
parentd2afd505de39854b4be13358cfb866f90ae5e14f (diff)
downloadspreadsheet-template-d461c4d4b34e9316ad9e9fa0320678d999b5868f.tar.gz
spreadsheet-template-d461c4d4b34e9316ad9e9fa0320678d999b5868f.zip
make json an attr to allow dependency injection
-rw-r--r--Changes2
-rw-r--r--lib/Spreadsheet/Template.pm16
2 files changed, 17 insertions, 1 deletions
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<JSON>.
+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);
}