Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #483 from notEthan/unicode_mixed | Hiroshi SHIBATA | 2022-06-14 | 1 | -0/+4 |
|\ | | | | | bugfix json/pure mixing escaped with literal unicode raises Encoding::CompatibilityError | ||||
| * | test parsing of unicode, mixing literal characters with escaped | Ethan | 2022-02-08 | 1 | -0/+4 |
| | | |||||
* | | Fix parser bug for empty string allocation | Andrew Bromwich | 2022-04-20 | 1 | -0/+1 |
|/ | | | | | | | | When `HAVE_RB_ENC_INTERNED_STR` is enabled it is possible to pass through a null pointer to `rb_enc_interned_str` resulting in a segfault Fixes #495 | ||||
* | test/json/json_parser_test.rb: suppress warnings | Yusuke Endoh | 2020-11-12 | 1 | -2/+2 |
| | | | | | | | | http://rubyci.s3.amazonaws.com/ubuntu/ruby-master/log/20201021T123003Z.log.html.gz ``` /home/chkbuild/chkbuild/tmp/build/20201021T123003Z/ruby/test/json/json_parser_test.rb:227: warning: ambiguous first argument; put parentheses or a space even after `-' operator /home/chkbuild/chkbuild/tmp/build/20201021T123003Z/ruby/test/json/json_parser_test.rb:228: warning: ambiguous first argument; put parentheses or a space even after `-' operator ``` | ||||
* | strip trailing spaces [ci skip] | Nobuyoshi Nakada | 2020-11-12 | 1 | -1/+1 |
| | |||||
* | Implement a freeze: parser option | Jean Boussier | 2020-09-15 | 1 | -0/+21 |
| | | | | | | | If set to true all parsed objects will be immediately frozen, and strings will be deduplicated if the Ruby implementation allows it. | ||||
* | Add an option to escape forward slash character | Jean Boussier | 2020-07-04 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | Squashed commit of the following: commit 26d181059989279a79c433cedcd893b4f52e42ee Author: Francois Chagnon <francois.chagnon@jadedpixel.com> Date: Tue Sep 15 21:17:34 2015 +0000 add config options for escape_slash commit fa282334051b16df91ca097dd7304b46f3bc7719 Author: Francois Chagnon <francois.chagnon@jadedpixel.com> Date: Mon Feb 9 21:09:33 2015 +0000 add forward slash to escape character | ||||
* | Fix JSON::Parser against bigdecimal updates | mrkn | 2019-10-31 | 1 | -2/+2 |
| | | | | git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66127 b2dd03c8-39d4-4d8f-98ff-823fe69b080e | ||||
* | Ignore warnings about ambiguous first argument with the negative integer. | Hiroshi SHIBATA | 2019-10-31 | 1 | -12/+12 |
| | |||||
* | Added missing bigdecimal for its test | SHIBATA Hiroshi | 2017-06-16 | 1 | -0/+1 |
| | |||||
* | Actually test BigDecimal parsing. | Xuân Baldauf | 2017-03-19 | 1 | -0/+5 |
| | |||||
* | Fix issue #296 when parsing frozen strings | Florian Frank | 2016-07-26 | 1 | -0/+7 |
| | |||||
* | Test parsing some simple singular values | Florian Frank | 2016-07-07 | 1 | -1/+12 |
| | |||||
* | And stay there | Florian Frank | 2016-06-22 | 1 | -1/+0 |
| | |||||
* | Add frozen_string_literal: false | Nobuyoshi Nakada | 2016-06-21 | 1 | -0/+1 |
| | | | | When you change this to true, you may need to add more tests. | ||||
* | Exception encoding | Nobuyoshi Nakada | 2016-06-21 | 1 | -0/+10 |
| | | | | Raise with messages in UTF-8 encoding. | ||||
* | Use assert_raise consistently | Nobuyoshi Nakada | 2016-06-21 | 1 | -25/+25 |
| | |||||
* | Remove quirks mode | Florian Frank | 2016-06-02 | 1 | -1/+1 |
| | |||||
* | Declare encoding | Florian Frank | 2016-06-02 | 1 | -0/+2 |
| | |||||
* | Disallow usage of symbolize_names and create_additions | Florian Frank | 2015-06-15 | 1 | -0/+3 |
| | |||||
* | Refactor tests and make pure parser green | Florian Frank | 2015-06-15 | 1 | -0/+433 |