./textproc/ruby-json, Native extension implementation of JSON for Ruby

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: pkgsrc-2012Q4, Version: 1.7.7, Package name: ruby193-json-1.7.7, Maintainer: pkgsrc-users

This is a implementation of the JSON specification according to RFC
4627. You can think of it as a low fat alternative to XML, if you
want to store data to disk or transmit it over a network rather than
use a verbose markup language.

The JSON generator escapes all non-ASCII an control characters with
\uXXXX escape sequences and supports UTF-16 surrogate pairs in order
to be able to generate the whole range of Unicode code points. This
means that generated JSON text is encoded as UTF-8 (because ASCII is
a subset of UTF-8) and at the same time avoids decoding problems for
receiving endpoints that don't expect UTF-8 encoded texts.

This package is fast 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.


Required to run:
[lang/ruby193-base]

Master sites:

SHA1: eba67a79ca1590b18db5a73171857a41fd3685f0
RMD160: 3b2343b1a99c5d870b08966c5c68a47b1d285c5c
Filesize: 145 KB

Version history: (Expand)


CVS history: (Expand)


   2013-02-14 16:52:15 by Matthias Scheler | Files touched by this commit (4) | Package updated
Log message:
Pullup ticket #4070 - requested by taca
textproc/ruby-json: security update
textproc/ruby-json-pure: security update

Revisions pulled up:
- textproc/ruby-json-pure/Makefile                              1.20-1.21
- textproc/ruby-json-pure/distinfo                              1.19-1.20
- textproc/ruby-json/Makefile                                   1.23-1.24
- textproc/ruby-json/distinfo                                   1.19-1.20

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Mon Feb 11 02:43:26 UTC 2013

   Modified Files:
   	pkgsrc/textproc/ruby-json: Makefile distinfo
   	pkgsrc/textproc/ruby-json-pure: Makefile distinfo

   Log message:
   Update ruby-json and ruby-json-pure to 1.7.6.

   2012-11-29 (1.7.6)
     * Add GeneratorState#merge alias for JRuby, fix state accessor methods. Thx to
      jvshahid@github.
     * Increase hash likeness of state objects.

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Tue Feb 12 13:13:08 UTC 2013

   Modified Files:
   	pkgsrc/textproc/ruby-json: Makefile distinfo
   	pkgsrc/textproc/ruby-json-pure: Makefile distinfo

   Log message:
   Update ruby-json and ruby-json-pure to 1.7.7.

   2013-02-04 (1.7.7)
     * Security fix for JSON create_additions default value and
       JSON::GenericObject. It should not be possible to create additions unless
       explicitely requested by setting the create_additions argument to true or
       using the JSON.load/dump interface. If JSON::GenericObject is supposed to
       be automatically deserialised, this has to be explicitely enabled by
       setting
         JSON::GenericObject.json_createble = true
       as well.
     * Remove useless assert in fbuffer implementation.
     * Apply patch attached to https://github.com/flori/json/issues#issue/155
       provided by John Shahid <jvshahid@gmail.com>, Thx!
     * Add license information to rubygems spec data, reported by Jordi Massaguer
       Pla <jmassaguerpla@suse.de>.
     * Improve documentation, thx to Zachary Scott <zachary@zacharyscott.net>.