-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from keithj/devel
Removed default size limit on JSONCodec.
- Loading branch information
Showing
10 changed files
with
14 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ Keith James <[email protected]> | |
=head1 COPYRIGHT AND DISCLAIMER | ||
Copyright (c) 2013-2014 Genome Research Limited. All Rights Reserved. | ||
Copyright (C) 2013, 2014 Genome Research Limited. All Rights Reserved. | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the Perl Artistic License or the GNU General | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,7 +131,7 @@ Keith James <[email protected]> | |
=head1 COPYRIGHT AND DISCLAIMER | ||
Copyright (c) 2013-2014 Genome Research Limited. All Rights Reserved. | ||
Copyright (C) 2013, 2014 Genome Research Limited. All Rights Reserved. | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the Perl Artistic License or the GNU General | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,7 @@ Keith James <[email protected]> | |
=head1 COPYRIGHT AND DISCLAIMER | ||
Copyright (c) 2013-2014 Genome Research Limited. All Rights Reserved. | ||
Copyright (C) 2013, 2014 Genome Research Limited. All Rights Reserved. | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the Perl Artistic License or the GNU General | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,7 +83,8 @@ Keith James <[email protected]> | |
=head1 COPYRIGHT AND DISCLAIMER | ||
Copyright (c) 2012-2014 Genome Research Limited. All Rights Reserved. | ||
Copyright (C) 2012, 2013, 2014 Genome Research Limited. All Rights | ||
Reserved. | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the Perl Artistic License or the GNU General | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,10 +12,11 @@ our $VERSION = ''; | |
our @HANDLED_JSON_METHODS = qw(decode encode); | ||
|
||
has 'max_size' => | ||
(is => 'ro', | ||
isa => 'Int', | ||
required => 1, | ||
default => 4096); | ||
(is => 'ro', | ||
isa => 'Int', | ||
required => 0, | ||
default => 0, | ||
documentation => 'The default max size is 0 which indicates no limit'); | ||
|
||
has 'parser' => | ||
(is => 'ro', | ||
|
@@ -49,7 +50,7 @@ Keith James <[email protected]> | |
=head1 COPYRIGHT AND DISCLAIMER | ||
Copyright (c) 2014 Genome Research Limited. All Rights Reserved. | ||
Copyright (C) 2014, 2015 Genome Research Limited. All Rights Reserved. | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the Perl Artistic License or the GNU General | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ Keith James <[email protected]> | |
=head1 COPYRIGHT AND DISCLAIMER | ||
Copyright (c) 2013-2014 Genome Research Limited. All Rights Reserved. | ||
Copyright (C) 2013, 2014 Genome Research Limited. All Rights Reserved. | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the Perl Artistic License or the GNU General | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,7 +134,7 @@ Keith James <[email protected]> | |
=head1 COPYRIGHT AND DISCLAIMER | ||
Copyright (c) 2013-2014 Genome Research Limited. All Rights Reserved. | ||
Copyright (C) 2013, 2014 Genome Research Limited. All Rights Reserved. | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the Perl Artistic License or the GNU General | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,7 +129,7 @@ Keith James <[email protected]> | |
=head1 COPYRIGHT AND DISCLAIMER | ||
Copyright (c) 2013-2014 Genome Research Limited. All Rights Reserved. | ||
Copyright (C) 2013, 2014 Genome Research Limited. All Rights Reserved. | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the Perl Artistic License or the GNU General | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters