json 1.8.5 → 1.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of json might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGES +3 -0
- data/VERSION +1 -1
- data/ext/json/ext/generator/generator.h +4 -0
- data/json.gemspec +0 -0
- data/json_pure.gemspec +3 -3
- data/lib/json/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b207450349d68bf8068396cae32ee1d687b91e18
|
4
|
+
data.tar.gz: 121263628f4d96edae9a0ee64523788ad75fba1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c31ea2331922e0dd70bb0d018cf3e4c1da90b989d8f216444811ed3fd54dcc53e87ac16543dde8c2c1ead0026fe21a6411f6be01d08b1d8061ff74af1a81eb4
|
7
|
+
data.tar.gz: 73903f9cb49b8cc9cb58dd90c1627514ebfb15789548e089a58635eaff598c44aadfbd8e98f0e6d4d197d5d727568fb44a0176c24dfe28ab67e1e2fd1a940392
|
data/CHANGES
CHANGED
@@ -1,4 +1,7 @@
|
|
1
|
+
2017-01-13 (1.8.6)
|
2
|
+
* Be compatible with ancient ruby 1.8 (maybe?)
|
1
3
|
2015-09-11 (1.8.5)
|
4
|
+
* Be compatible with ruby 2.4.0
|
2
5
|
* There were still some mentions of dual GPL licensing in the source, but JSON
|
3
6
|
has just the Ruby license that itself includes an explicit dual-licensing
|
4
7
|
clause that allows covered software to be distributed under the terms of
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.8.
|
1
|
+
1.8.6
|
@@ -21,6 +21,10 @@
|
|
21
21
|
#define rb_obj_instance_variables(object) rb_funcall(object, rb_intern("instance_variables"), 0)
|
22
22
|
#endif
|
23
23
|
|
24
|
+
#ifndef RB_TYPE_P
|
25
|
+
#define RB_TYPE_P(obj, type) (rb_type(obj) == type)
|
26
|
+
#endif
|
27
|
+
|
24
28
|
#define option_given_p(opts, key) RTEST(rb_funcall(opts, i_key_p, 1, key))
|
25
29
|
|
26
30
|
/* unicode definitions */
|
data/json.gemspec
CHANGED
Binary file
|
data/json_pure.gemspec
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: json_pure 1.8.
|
2
|
+
# stub: json_pure 1.8.6 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "json_pure".freeze
|
6
|
-
s.version = "1.8.
|
6
|
+
s.version = "1.8.6"
|
7
7
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
9
9
|
s.require_paths = ["lib".freeze]
|
10
10
|
s.authors = ["Florian Frank".freeze]
|
11
|
-
s.date = "2017-01-
|
11
|
+
s.date = "2017-01-13"
|
12
12
|
s.description = "This is a JSON implementation in pure Ruby.".freeze
|
13
13
|
s.email = "flori@ping.de".freeze
|
14
14
|
s.extra_rdoc_files = ["README.md".freeze]
|
data/lib/json/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: json
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.
|
4
|
+
version: 1.8.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Florian Frank
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-01-
|
11
|
+
date: 2017-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|