json 1.8.2-java → 1.8.3-java

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dedec927fc4d0b7e2a25506886539ab45d983fe2
4
- data.tar.gz: aa0948094df5bf9c40fbcd3a7a5615b475d46b1d
3
+ metadata.gz: 3b84f10e4844be3576a540bca0579e5fa2bb21e3
4
+ data.tar.gz: cdf565ce241f4401646ee8309f5c0debf3c19f95
5
5
  SHA512:
6
- metadata.gz: 590bc46bfdaf1b8c365265dacf1e5fc81cff2a91fb0bfa2da845555d9264d3bd164b19e8e1a1c066cda359ddacb8cfdebe562f73861183e155f1ef8c0695d2b5
7
- data.tar.gz: 8b1fb13edd5ee877fc09c17b4ab78a41d303918cc473b04fad606fbbbf3197dcfa37a918d27c2d4632b4ee1209d1355d87ca668d3f5e317a57b35c451c7f5b2b
6
+ metadata.gz: 5440ee9016069daef51e6820dfe4b759fd96f61911b0ecad27752e050142e161f9682d2463953b61153536aaf7006d2d09fd1db89c8c033a27a726cda12eb07e
7
+ data.tar.gz: 6b010a26f908b22e93c4914a625292d71d39ed968c6b8ee9652018ec28988248cdcacd9d527b136359c6ea9aa6c2c5cb50abacf4c664882e0f9f6337fc4d2fb6
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  module JSON
2
2
  # JSON version
3
- VERSION = '1.8.2'
3
+ VERSION = '1.8.3'
4
4
  VERSION_ARRAY = VERSION.split(/\./).map { |x| x.to_i } # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
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.2
4
+ version: 1.8.3
5
5
  platform: java
6
6
  authors:
7
7
  - Daniel Luz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-09 00:00:00.000000000 Z
11
+ date: 2015-06-01 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A JSON implementation as a JRuby extension.
14
14
  email: dev+ruby@mernen.com
@@ -17,11 +17,6 @@ extensions: []
17
17
  extra_rdoc_files: []
18
18
  files:
19
19
  - lib/json.rb
20
- - lib/json/common.rb
21
- - lib/json/ext.rb
22
- - lib/json/generic_object.rb
23
- - lib/json/pure.rb
24
- - lib/json/version.rb
25
20
  - lib/json/add/bigdecimal.rb
26
21
  - lib/json/add/complex.rb
27
22
  - lib/json/add/core.rb
@@ -35,19 +30,15 @@ files:
35
30
  - lib/json/add/struct.rb
36
31
  - lib/json/add/symbol.rb
37
32
  - lib/json/add/time.rb
33
+ - lib/json/common.rb
34
+ - lib/json/ext.rb
38
35
  - lib/json/ext/generator.jar
39
36
  - lib/json/ext/parser.jar
37
+ - lib/json/generic_object.rb
38
+ - lib/json/pure.rb
40
39
  - lib/json/pure/generator.rb
41
40
  - lib/json/pure/parser.rb
42
- - tests/setup_variant.rb
43
- - tests/test_json.rb
44
- - tests/test_json_addition.rb
45
- - tests/test_json_encoding.rb
46
- - tests/test_json_fixtures.rb
47
- - tests/test_json_generate.rb
48
- - tests/test_json_generic_object.rb
49
- - tests/test_json_string_matching.rb
50
- - tests/test_json_unicode.rb
41
+ - lib/json/version.rb
51
42
  - tests/fixtures/fail1.json
52
43
  - tests/fixtures/fail10.json
53
44
  - tests/fixtures/fail11.json
@@ -79,6 +70,15 @@ files:
79
70
  - tests/fixtures/pass2.json
80
71
  - tests/fixtures/pass26.json
81
72
  - tests/fixtures/pass3.json
73
+ - tests/setup_variant.rb
74
+ - tests/test_json.rb
75
+ - tests/test_json_addition.rb
76
+ - tests/test_json_encoding.rb
77
+ - tests/test_json_fixtures.rb
78
+ - tests/test_json_generate.rb
79
+ - tests/test_json_generic_object.rb
80
+ - tests/test_json_string_matching.rb
81
+ - tests/test_json_unicode.rb
82
82
  homepage: http://json-jruby.rubyforge.org/
83
83
  licenses:
84
84
  - Ruby
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  version: '0'
100
100
  requirements: []
101
101
  rubyforge_project: json-jruby
102
- rubygems_version: 2.1.9
102
+ rubygems_version: 2.4.5
103
103
  signing_key:
104
104
  specification_version: 4
105
105
  summary: JSON implementation for JRuby