ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/XS/Boolean.pm
Revision: 1.3
Committed: Tue Oct 29 10:35:37 2013 UTC (10 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-4_0, rel-4_01, rel-4_03, rel-4_02, rel-4_0_00, rel-3_01, rel-3_02, rel-3_03, rel-3_04, HEAD
Changes since 1.2: +7 -2 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 =head1 NAME
2
3 JSON::XS::Boolean - dummy module providing JSON::XS::Boolean
4
5 =head1 SYNOPSIS
6
7 # do not "use" yourself
8
9 =head1 DESCRIPTION
10
11 This module exists only to provide overload resolution for Storable and
12 similar modules. It's only needed for compatibility with data serialised
13 (by other modules such as Storable) that was decoded by JSON::XS versions
14 before 3.0.
15
16 Since 3.0, JSON::PP::Boolean has replaced it. Support for
17 JSON::XS::Boolean will be removed in a future release.
18
19 =cut
20
21 use JSON::XS ();
22
23 1;
24
25 =head1 AUTHOR
26
27 Marc Lehmann <schmorp@schmorp.de>
28 http://home.schmorp.de/
29
30 =cut
31