| Commit message (Expand) | Author | Age | Files | Lines |
* | Add tests to ensure we don't interfere with json gem's output | Godfrey Chan | 2015-07-11 | 1 | -102/+32 |
* | Escape HTML entities in JSON keys | Rafael Mendonça França | 2015-06-16 | 1 | -0/+7 |
* | Skip the failing tests on Rubinius for now | Robin Dupret | 2015-03-02 | 1 | -0/+2 |
* | Removed magic comments # encoding: utf-8 , since its default from ruby 2.0 on... | Vipul A M | 2015-02-03 | 1 | -1/+0 |
* | Remove deprecated ActiveSupport::JSON::Encoding::CircularReferenceError. | Rafael Mendonça França | 2015-01-04 | 1 | -24/+0 |
* | Remove deprecated ActiveSupport::JSON::Encoding.encode_big_decimal_as_string= | Rafael Mendonça França | 2015-01-04 | 1 | -16/+0 |
* | Remove redundant `to_s` in interpolation | claudiob | 2014-10-30 | 1 | -1/+1 |
* | Avoid hardcoded magic number in test teardown. | Zuhao Wan | 2014-06-22 | 1 | -14/+19 |
* | Extract out with_env_tz helper method. | Zuhao Wan | 2014-06-18 | 1 | -7/+3 |
* | Fix #to_json for BasicObject Enumerables | Sammy Larbi | 2014-03-14 | 1 | -10/+33 |
* | Add support for JSON time_precision to Time and DateTime | Andrew White | 2014-01-26 | 1 | -1/+19 |
* | Rename subsecond_fraction_digits option to time_precision | Andrew White | 2014-01-26 | 1 | -3/+3 |
* | Consolidate JSON encoding tests in one file | Andrew White | 2014-01-26 | 1 | -11/+48 |
* | Added back the `encode_big_decimal_as_string` option with warning | Godfrey Chan | 2013-12-02 | 1 | -0/+16 |
* | Be explicit and use the actual unicode sequence | Godfrey Chan | 2013-11-26 | 1 | -1/+1 |
* | Removed the Ruby encoder and switched to using the JSON gem | Godfrey Chan | 2013-11-26 | 1 | -2/+2 |
* | Removed support for encoding BigDecimal as a JSON number | Godfrey Chan | 2013-11-26 | 1 | -11/+0 |
* | Expanded coverage on JSON encoding | Godfrey Chan | 2013-11-26 | 1 | -2/+12 |
* | Added some failing tests where the JSON encoder is not resolving as_json corr... | Godfrey Chan | 2013-11-26 | 1 | -2/+12 |
* | When Array#as_json and Hash#as_json are called without options, they | Godfrey Chan | 2013-11-22 | 1 | -0/+16 |
* | Improved compatibility with the stdlib JSON gem. | Godfrey Chan | 2013-11-14 | 1 | -0/+45 |
* | Standardize all JSON encoded times to use 3 decimal fractional seconds | Ryan Glover | 2013-11-07 | 1 | -3/+3 |
* | Do not expose internal state in the public encoder API (i.e. as_json) | Godfrey Chan | 2013-11-06 | 1 | -3/+9 |
* | Eliminate `JSON.{parse,load,generate,dump}` and `def to_json` | Godfrey Chan | 2013-11-05 | 1 | -4/+4 |
* | Fixed Object#as_json and Struct#as_json with options | Godfrey Chan | 2013-11-05 | 1 | -2/+27 |
* | Moved all JSON core extensions into core_ext/object/json | Godfrey Chan | 2013-09-13 | 1 | -0/+8 |
* | Remove active_support/json/variable was deprecated. | kennyj | 2013-06-01 | 1 | -7/+0 |
* | Fix some typo in method names, variables | Vipul A M | 2013-05-26 | 1 | -1/+1 |
* | Added escaping of U+2028 and U+2029 inside the json encoder. | Mario Caropreso | 2013-05-09 | 1 | -2/+2 |
* | Fixed bad tests to clean up after themselves. | Ryan Davis | 2013-05-03 | 1 | -4/+11 |
* | rewrite order dependent test case. #8185 | Yves Senn | 2012-12-27 | 1 | -1/+2 |
* | Remove unicode character encoding from ActiveSupport::JSON.encode | Brett Carter | 2012-12-14 | 1 | -3/+16 |
* | `#as_json` isolates options when encoding a hash. Closes #8182 | Yves Senn | 2012-11-12 | 1 | -0/+18 |
* | Deprecate ActiveSupport::JSON::Variable | Erich Menge | 2012-08-07 | 1 | -0/+7 |
* | Remove deprecated ActiveSupport::JSON::Variable. | Erich Menge | 2012-05-30 | 1 | -2/+0 |
* | True, False, and Nil should be represented in as_json as themselves. | Erich Menge | 2012-05-29 | 1 | -0/+6 |
* | BigDecimal string wrapping in JSON serialization can now be opted-out, fixes ... | David FRANCOIS | 2012-05-02 | 1 | -0/+11 |
* | JSON: encode BigDecimal NaN/Infinity as null. | Sebi Burkhard | 2012-05-01 | 1 | -0/+1 |
* | Merge pull request #2532 from hasclass/as_json__encode_infinite_and_nan_float... | Piotr Sarnacki | 2012-04-30 | 1 | -0/+3 |
|\ |
|
| * | JSON: Encode infinite or NaN floats as null to generate valid JSON. | Sebi Burkhard | 2011-08-15 | 1 | -0/+3 |
* | | use AS::TestCase as the base class | Aaron Patterson | 2012-01-05 | 1 | -1/+1 |
* | | use #to_s to convert Range to json | Sergey Nartimov | 2012-01-01 | 1 | -0/+4 |
* | | remove checks for encodings availability | Sergey Nartimov | 2011-12-25 | 1 | -2/+2 |
* | | Initial pass at removing dead 1.8.x code from Active Support. | José Valim | 2011-12-20 | 1 | -17/+13 |
|/ |
|
* | Enumerable should pass encoding options to children in #as_json/#to_json. | John Firebaugh | 2011-04-01 | 1 | -9/+24 |
* | ordering can change depending on ruby version, so parse the JSON and verify d... | Aaron Patterson | 2011-01-17 | 1 | -3/+10 |
* | Complex struct encoding test | Alexey Nayden | 2011-01-15 | 1 | -0/+23 |
* | Fixed various isolated test missing requires within AS. | Josh Kalderimis | 2011-01-12 | 1 | -0/+1 |
* | fixed some issues with JSON encoding | Jakub Suder | 2010-09-07 | 1 | -1/+64 |
* | Removes unused vars | Santiago Pastorino | 2010-07-24 | 1 | -1/+1 |