Path to this page:
NOTICE: This package has been removed from pkgsrc./
textproc/ruby-json-pure,
Pure Ruby implementation of JSON
Branch: CURRENT,
Version: 2.5.1,
Package name: ruby27-json-pure-2.5.1,
Maintainer: pkgsrc-usersThis 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 a pure Ruby variant that relies on the iconv and the
stringscan extensions, which are both part of the Ruby standard library.
Required to run:[
lang/ruby26-base]
Required to build:[
pkgtools/cwrappers]
Master sites:
Filesize: 60 KB
Version history: (Expand)
- (2023-02-24) Package deleted from pkgsrc
- (2021-10-07) Updated to version: ruby27-json-pure-2.5.1
- (2021-03-07) Updated to version: ruby26-json-pure-2.5.1
- (2020-09-14) Updated to version: ruby26-json-pure-2.3.1
- (2020-05-05) Updated to version: ruby26-json-pure-2.3.0
- (2020-01-18) Updated to version: ruby26-json-pure-2.2.0
CVS history: (Expand)
2023-02-23 16:56:26 by Takahiro Kambe | Files touched by this commit (8) | |
Log message:
textproc/ruby-json{,-pure}: remove packages
Json is one of default gems which bundled with Ruby base release and
current ruby*-base pacakge contains required version of json.
Since now no package depneds on ruby-json and ruby-json-pure, it's
time to say good-by.
|
2021-10-26 13:23:42 by Nia Alarie | Files touched by this commit (1161) |
Log message:
textproc: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Unfetchable distfiles (fetched conditionally?):
./textproc/convertlit/distinfo clit18src.zip
|
2021-10-07 17:02:49 by Nia Alarie | Files touched by this commit (1162) |
Log message:
textproc: Remove SHA1 hashes for distfiles
|
2021-03-07 15:30:42 by Takahiro Kambe | Files touched by this commit (4) | |
Log message:
textproc/ruby-json-pure: update to 2.5.1
# Changes
## 2020-12-22 (2.5.1)
* Restore the compatibility for constants of JSON class.
## 2020-12-22 (2.5.0)
* Ready to Ractor-safe at Ruby 3.0.
## 2020-12-17 (2.4.1)
* Restore version.rb with 2.4.1
## 2020-12-15 (2.4.0)
* Implement a freeze: parser option #447
* Fix an issue with generate_pretty and empty objects in the Ruby and Java
implementations #449
* Fix JSON.load_file doc #448
* Fix pure parser with unclosed arrays / objects #425
* bundle the LICENSE file in the gem #444
* Add an option to escape forward slash character #405
* RDoc for JSON #439 #446 #442 #434 #433 #430
|
2020-09-14 18:09:28 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
textproc/ruby-json-pure: update to 2.3.1
Update ruby-json-pure package to 2.3.1.
## 2020-06-30 (2.3.1)
* Spelling and grammar fixes for comments. Pull request #191 by Josh
Kline.
* Enhance generic JSON and #generate docs. Pull request #347 by Victor
Shepelev.
* Add :nodoc: for GeneratorMethods. Pull request #349 by Victor Shepelev.
* Baseline changes to help (JRuby) development. Pull request #371 by Karol
Bucek.
* Add metadata for rubygems.org. Pull request #379 by Alexandre ZANNI.
* Remove invalid JSON.generate description from JSON module rdoc. Pull
request #384 by Jeremy Evans.
* Test with TruffleRuby in CI. Pull request #402 by Benoit Daloze.
* Rdoc enhancements. Pull request #413 by Burdette Lamar.
* Fixtures/ are not being tested... Pull request #416 by Marc-André
Lafortune.
* Use frozen string for hash key. Pull request #420 by Marc-André
Lafortune.
* Added :call-seq: to RDoc for some methods. Pull request #422 by Burdette
Lamar.
* Small typo fix. Pull request #423 by Marc-André Lafortune.
|
2020-05-05 07:53:07 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
textproc/ruby-json-pure: update to 2.3.0
Update ruby-json-pure to 2.3.0.
No CHANGES are noted. But it seems various clean up and bug fixes.
|
2020-01-19 00:36:14 by Roland Illig | Files touched by this commit (3046) |
Log message:
all: migrate several HOMEPAGEs to https
pkglint --only "https instead of http" -r -F
With manual adjustments afterwards since pkglint 19.4.4 fixed a few
indentations in unrelated lines.
This mainly affects projects hosted at SourceForce, as well as
freedesktop.org, CTAN and GNU.
|
2020-01-18 17:22:07 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
textproc/ruby-json-pure: update to 2.2.0
Update ruby-json-pure to 2.2.0.
## 2019-02-21 (2.2.0)
* Adds support for 2.6 BigDecimal and ruby standard library Set datetype.
|