Pulluped ticket #3201 - requested by gls
[pkgsrc.git] / textproc / ruby-json / DESCR
1 This is a implementation of the JSON specification according to RFC
2 4627.  You can think of it as a low fat alternative to XML, if you
3 want to store data to disk or transmit it over a network rather than
4 use a verbose markup language.
5
6 The JSON generator escapes all non-ASCII an control characters with
7 \uXXXX escape sequences and supports UTF-16 surrogate pairs in order
8 to be able to generate the whole range of Unicode code points.  This
9 means that generated JSON text is encoded as UTF-8 (because ASCII is
10 a subset of UTF-8) and at the same time avoids decoding problems for
11 receiving endpoints that don't expect UTF-8 encoded texts.
12
13 This package is fast C extension variant which is in parts implemented
14 in C and comes with its own Unicode conversion functions and a parser
15 generated by the Ragel State Machine Compiler.