README in json_pure-1.2.0 vs README in json_pure-1.2.1
- old
+ new
@@ -1,19 +1,19 @@
== json - JSON Implementation for Ruby
=== Description
This is a implementation of the JSON specification according to RFC 4627
-(http://www.ietf.org/rfc/rfc4627.txt). Starting from version 1.0.0 on there
+http://www.ietf.org/rfc/rfc4627.txt . Starting from version 1.0.0 on there
will be two variants available:
* A pure ruby variant, that relies on the iconv and the stringscan
extensions, which are both part of the ruby standard library.
* The quite a bit faster C extension variant, which is in parts implemented
in C and comes with its own unicode conversion functions and a parser
generated by the ragel state machine compiler
- (http://www.cs.queensu.ca/~thurston/ragel).
+ http://www.cs.queensu.ca/~thurston/ragel .
Both variants of the JSON generator escape all non-ASCII and control characters
with \uXXXX escape sequences, and support UTF-16 surrogate pairs in order to be
able to generate the whole range of unicode code points. This means that
generated JSON document is encoded as UTF-8 (because ASCII is a subset of
@@ -222,10 +222,10 @@
pretty_generate output to the console, that work analogous to Core Ruby's p and
the pp library's pp methods.
The script tools/server.rb contains a small example if you want to test, how
receiving a JSON object from a webrick server in your browser with the
-javasript prototype library (http://www.prototypejs.org) works.
+javasript prototype library http://www.prototypejs.org works.
=== Speed Comparisons
I have created some benchmark results (see the benchmarks/data-p4-3Ghz
subdir of the package) for the JSON-parser to estimate the speed up in the C