json 1.6.0.1-java → 1.6.1-java

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of json might be problematic. Click here for more details.

Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  module JSON
2
2
  # JSON version
3
- VERSION = '1.6.0'
3
+ VERSION = '1.6.1'
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
@@ -2,7 +2,7 @@
2
2
  name: json
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.6.0.1
5
+ version: 1.6.1
6
6
  platform: java
7
7
  authors:
8
8
  - Daniel Luz
@@ -10,7 +10,8 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-09-13 00:00:00 Z
13
+ date: 2011-09-18 00:00:00 +02:00
14
+ default_executable:
14
15
  dependencies: []
15
16
 
16
17
  description: A JSON implementation as a JRuby extension.
@@ -23,64 +24,65 @@ extra_rdoc_files: []
23
24
 
24
25
  files:
25
26
  - lib/json.rb
27
+ - lib/json/version.rb
26
28
  - lib/json/common.rb
27
29
  - lib/json/ext.rb
28
30
  - lib/json/pure.rb
29
- - lib/json/version.rb
31
+ - lib/json/add/symbol.rb
32
+ - lib/json/add/struct.rb
30
33
  - lib/json/add/complex.rb
31
- - lib/json/add/core.rb
32
- - lib/json/add/date.rb
33
- - lib/json/add/date_time.rb
34
+ - lib/json/add/rational.rb
34
35
  - lib/json/add/exception.rb
36
+ - lib/json/add/time.rb
37
+ - lib/json/add/date_time.rb
38
+ - lib/json/add/core.rb
35
39
  - lib/json/add/range.rb
36
- - lib/json/add/rational.rb
40
+ - lib/json/add/date.rb
37
41
  - lib/json/add/regexp.rb
38
- - lib/json/add/struct.rb
39
- - lib/json/add/symbol.rb
40
- - lib/json/add/time.rb
41
- - lib/json/ext/generator.jar
42
- - lib/json/ext/parser.jar
43
42
  - lib/json/pure/generator.rb
44
43
  - lib/json/pure/parser.rb
44
+ - lib/json/ext/generator.jar
45
+ - lib/json/ext/parser.jar
46
+ - tests/test_json_string_matching.rb
47
+ - tests/test_json_fixtures.rb
45
48
  - tests/setup_variant.rb
46
- - tests/test_json.rb
49
+ - tests/test_json_unicode.rb
47
50
  - tests/test_json_addition.rb
48
- - tests/test_json_encoding.rb
49
- - tests/test_json_fixtures.rb
50
51
  - tests/test_json_generate.rb
51
- - tests/test_json_string_matching.rb
52
- - tests/test_json_unicode.rb
53
- - tests/fixtures/fail1.json
52
+ - tests/test_json_encoding.rb
53
+ - tests/test_json.rb
54
+ - tests/fixtures/fail6.json
55
+ - tests/fixtures/fail9.json
54
56
  - tests/fixtures/fail10.json
55
- - tests/fixtures/fail11.json
56
- - tests/fixtures/fail12.json
57
- - tests/fixtures/fail13.json
58
- - tests/fixtures/fail14.json
59
- - tests/fixtures/fail18.json
60
- - tests/fixtures/fail19.json
61
- - tests/fixtures/fail2.json
62
- - tests/fixtures/fail20.json
63
- - tests/fixtures/fail21.json
64
- - tests/fixtures/fail22.json
65
- - tests/fixtures/fail23.json
66
57
  - tests/fixtures/fail24.json
67
- - tests/fixtures/fail25.json
68
- - tests/fixtures/fail27.json
69
58
  - tests/fixtures/fail28.json
70
- - tests/fixtures/fail3.json
59
+ - tests/fixtures/fail13.json
71
60
  - tests/fixtures/fail4.json
72
- - tests/fixtures/fail5.json
73
- - tests/fixtures/fail6.json
74
- - tests/fixtures/fail7.json
75
- - tests/fixtures/fail8.json
76
- - tests/fixtures/fail9.json
77
- - tests/fixtures/pass1.json
78
- - tests/fixtures/pass15.json
61
+ - tests/fixtures/pass3.json
62
+ - tests/fixtures/fail11.json
63
+ - tests/fixtures/fail14.json
64
+ - tests/fixtures/fail3.json
65
+ - tests/fixtures/fail12.json
79
66
  - tests/fixtures/pass16.json
80
- - tests/fixtures/pass17.json
67
+ - tests/fixtures/pass15.json
68
+ - tests/fixtures/fail20.json
69
+ - tests/fixtures/fail8.json
81
70
  - tests/fixtures/pass2.json
71
+ - tests/fixtures/fail5.json
72
+ - tests/fixtures/fail1.json
73
+ - tests/fixtures/fail25.json
74
+ - tests/fixtures/pass17.json
75
+ - tests/fixtures/fail7.json
82
76
  - tests/fixtures/pass26.json
83
- - tests/fixtures/pass3.json
77
+ - tests/fixtures/fail21.json
78
+ - tests/fixtures/pass1.json
79
+ - tests/fixtures/fail23.json
80
+ - tests/fixtures/fail18.json
81
+ - tests/fixtures/fail2.json
82
+ - tests/fixtures/fail22.json
83
+ - tests/fixtures/fail27.json
84
+ - tests/fixtures/fail19.json
85
+ has_rdoc: true
84
86
  homepage: http://json-jruby.rubyforge.org/
85
87
  licenses: []
86
88
 
@@ -104,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
106
  requirements: []
105
107
 
106
108
  rubyforge_project: json-jruby
107
- rubygems_version: 1.8.9
109
+ rubygems_version: 1.5.1
108
110
  signing_key:
109
111
  specification_version: 3
110
112
  summary: JSON implementation for JRuby