Skip to content

Commit 36b5369

Browse files
committed
initial commit
0 parents  commit 36b5369

31 files changed

+10004
-0
lines changed

Changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Revision history for JSON-SL
2+
3+
0.01 Date/time
4+
First version, released on an unsuspecting world.
5+

MANIFEST

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Changes
2+
MANIFEST
3+
Makefile.PL
4+
README
5+
lib/JSON/SL.pm
6+
lib/JSON/SL/EscapeTH.pm
7+
8+
perl-jsonsl.h
9+
jsonxs_inline.h
10+
11+
jsonsl.h
12+
jsonsl.c
13+
ppport.h
14+
15+
SL.xs
16+
typemap
17+
18+
MANIFEST.SKIP
19+
20+
t/13-limit.t
21+
t/02-readonly.t
22+
t/01-synopsis.t
23+
t/09-pc_base.t
24+
t/11-pc_expo.t
25+
t/05-types.t
26+
t/04-errors.t
27+
t/10-pc_extra_number.t
28+
t/07-dwiw_decode.t
29+
t/00-load.t
30+
t/08-pc_esc.t
31+
t/03-unescape.t
32+
t/06-utf8.t
33+
34+
eg/bench.pl

MANIFEST.SKIP

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#ignore perlall output
2+
log\.*
3+
#ignore google-pprof output
4+
\.out
5+
6+
#ignore komodo project file
7+
\.kpf

Makefile.PL

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
use strict;
2+
use warnings;
3+
use ExtUtils::MakeMaker;
4+
5+
WriteMakefile(
6+
NAME => 'JSON::SL',
7+
AUTHOR => q{M. Nunberg <[email protected]>},
8+
VERSION_FROM => 'lib/JSON/SL.pm',
9+
ABSTRACT_FROM => 'lib/JSON/SL.pm',
10+
META_MERGE => {
11+
resources => {
12+
repository => 'https://github.com/mnunberg/perl-JSON-SL/'
13+
}
14+
},
15+
16+
($ExtUtils::MakeMaker::VERSION >= 6.3002
17+
? ('LICENSE'=> 'perl')
18+
: ()),
19+
PL_FILES => {},
20+
OPTIMIZE => '-Wall -ggdb3 -O3',
21+
PREREQ_PM => {
22+
'Test::More' => 0,
23+
},
24+
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
25+
clean => { FILES => 'JSON-SL-*' },
26+
);

README

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
JSON-SL
2+
3+
The README is used to introduce the module and provide instructions on
4+
how to install the module, any machine dependencies it may have (for
5+
example C compilers and installed libraries) and any other information
6+
that should be provided before the module is installed.
7+
8+
A README file is required for CPAN modules since CPAN extracts the README
9+
file from a module distribution so that people browsing the archive
10+
can use it to get an idea of the module's uses. It is usually a good idea
11+
to provide version information here so that people can decide whether
12+
fixes for the module are worth downloading.
13+
14+
15+
INSTALLATION
16+
17+
To install this module, run the following commands:
18+
19+
perl Makefile.PL
20+
make
21+
make test
22+
make install
23+
24+
SUPPORT AND DOCUMENTATION
25+
26+
After installing, you can find documentation for this module with the
27+
perldoc command.
28+
29+
perldoc JSON::SL
30+
31+
You can also look for information at:
32+
33+
RT, CPAN's request tracker
34+
http://rt.cpan.org/NoAuth/Bugs.html?Dist=JSON-SL
35+
36+
AnnoCPAN, Annotated CPAN documentation
37+
http://annocpan.org/dist/JSON-SL
38+
39+
CPAN Ratings
40+
http://cpanratings.perl.org/d/JSON-SL
41+
42+
Search CPAN
43+
http://search.cpan.org/dist/JSON-SL/
44+
45+
46+
LICENSE AND COPYRIGHT
47+
48+
Copyright (C) 2012 M. Nunberg
49+
50+
This program is free software; you can redistribute it and/or modify it
51+
under the terms of either: the GNU General Public License as published
52+
by the Free Software Foundation; or the Artistic License.
53+
54+
See http://dev.perl.org/licenses/ for more information.
55+

0 commit comments

Comments
 (0)