json 1.1.8 → 1.1.9

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.

Files changed (5) hide show
  1. data/CHANGES +2 -0
  2. data/Rakefile +2 -0
  3. data/VERSION +1 -1
  4. data/lib/json/version.rb +1 -1
  5. metadata +84 -101
data/CHANGES CHANGED
@@ -1,3 +1,5 @@
1
+ 2009-08-23 (1.1.9)
2
+ * Added forgotten main doc file extra_rdoc_files.
1
3
  2009-08-23 (1.1.8)
2
4
  * Applied a patch by OZAWA Sakuro <sakuro@2238club.org> to make json/pure
3
5
  work in environments that don't provide iconv.
data/Rakefile CHANGED
@@ -170,6 +170,7 @@ if defined?(Gem) and defined?(Rake::GemPackageTask) and defined?(Rake::Extension
170
170
  s.default_executable = "edit_json.rb"
171
171
 
172
172
  s.has_rdoc = true
173
+ s.extra_rdoc_files << 'doc-main.txt'
173
174
  s.rdoc_options <<
174
175
  '--title' << 'JSON -- A JSON implemention' << '--main' << 'doc-main.txt'
175
176
  s.test_files.concat Dir['tests/*.rb']
@@ -204,6 +205,7 @@ if defined?(Gem) and defined?(Rake::GemPackageTask) and defined?(Rake::Extension
204
205
  s.default_executable = "edit_json.rb"
205
206
 
206
207
  s.has_rdoc = true
208
+ s.extra_rdoc_files << 'doc-main.txt'
207
209
  s.rdoc_options <<
208
210
  '--title' << 'JSON -- A JSON implemention' << '--main' << 'doc-main.txt'
209
211
  s.test_files.concat Dir['tests/*.rb']
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.8
1
+ 1.1.9
@@ -1,6 +1,6 @@
1
1
  module JSON
2
2
  # JSON version
3
- VERSION = '1.1.8'
3
+ VERSION = '1.1.9'
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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.8
4
+ version: 1.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank
@@ -21,144 +21,127 @@ executables:
21
21
  extensions:
22
22
  - ext/json/ext/generator/extconf.rb
23
23
  - ext/json/ext/parser/extconf.rb
24
- extra_rdoc_files: []
25
-
24
+ extra_rdoc_files:
25
+ - doc-main.txt
26
26
  files:
27
27
  - CHANGES
28
- - COPYING
28
+ - bin/edit_json.rb
29
+ - bin/prettify_json.rb
30
+ - VERSION
29
31
  - GPL
30
- - README
31
- - Rakefile
32
32
  - TODO
33
- - VERSION
34
- - benchmarks
35
- - benchmarks/data-p4-3GHz-ruby18
33
+ - README
34
+ - benchmarks/parser_benchmark.rb
35
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log
36
36
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log
37
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
38
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
39
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat
40
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat
41
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat
37
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat
42
38
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat
39
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat
40
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
41
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
42
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log
43
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat
44
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat
43
45
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log
44
46
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat
45
47
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat
48
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat
46
49
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat
47
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat
48
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat
49
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat
50
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log
51
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat
52
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat
50
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat
51
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat
53
52
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log
54
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log
55
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat
56
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat
57
53
  - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log
58
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat
59
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat
60
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log
61
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat
62
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat
63
54
  - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log
64
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat
65
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat
55
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log
56
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat
57
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat
58
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat
59
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat
66
60
  - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log
67
- - benchmarks/data
61
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat
62
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat
63
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat
64
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat
65
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat
68
66
  - benchmarks/generator_benchmark.rb
69
- - benchmarks/parser_benchmark.rb
70
- - bin
71
- - bin/edit_json.rb
72
- - bin/prettify_json.rb
73
- - data
74
- - data/example.json
75
- - data/index.html
76
- - data/prototype.js
77
- - diagrams
78
- - doc-main.txt
79
- - ext
80
- - ext/json
81
- - ext/json/ext
82
- - ext/json/ext/generator
83
67
  - ext/json/ext/generator/extconf.rb
84
- - ext/json/ext/generator/generator.c
85
68
  - ext/json/ext/generator/unicode.c
69
+ - ext/json/ext/generator/generator.c
86
70
  - ext/json/ext/generator/unicode.h
87
- - ext/json/ext/parser
88
71
  - ext/json/ext/parser/extconf.rb
89
- - ext/json/ext/parser/parser.c
90
72
  - ext/json/ext/parser/parser.rl
91
73
  - ext/json/ext/parser/unicode.c
74
+ - ext/json/ext/parser/parser.c
92
75
  - ext/json/ext/parser/unicode.h
93
- - install.rb
94
- - lib
76
+ - Rakefile
77
+ - tools/fuzz.rb
78
+ - tools/server.rb
95
79
  - lib/json.rb
96
- - lib/json
97
- - lib/json/Array.xpm
98
- - lib/json/FalseClass.xpm
99
- - lib/json/Hash.xpm
80
+ - lib/json/json.xpm
100
81
  - lib/json/Key.xpm
101
- - lib/json/NilClass.xpm
102
- - lib/json/Numeric.xpm
103
82
  - lib/json/String.xpm
104
- - lib/json/TrueClass.xpm
105
- - lib/json/add
106
- - lib/json/add/core.rb
83
+ - lib/json/Numeric.xpm
84
+ - lib/json/Hash.xpm
107
85
  - lib/json/add/rails.rb
86
+ - lib/json/add/core.rb
108
87
  - lib/json/common.rb
109
- - lib/json/editor.rb
110
- - lib/json/ext.rb
111
- - lib/json/ext
112
- - lib/json/json.xpm
113
- - lib/json/pure.rb
114
- - lib/json/pure
88
+ - lib/json/Array.xpm
89
+ - lib/json/FalseClass.xpm
115
90
  - lib/json/pure/generator.rb
116
91
  - lib/json/pure/parser.rb
92
+ - lib/json/TrueClass.xpm
93
+ - lib/json/pure.rb
117
94
  - lib/json/version.rb
118
- - tests
119
- - tests/fixtures
95
+ - lib/json/ext.rb
96
+ - lib/json/editor.rb
97
+ - lib/json/NilClass.xpm
98
+ - data/example.json
99
+ - data/index.html
100
+ - data/prototype.js
101
+ - tests/test_json_addition.rb
102
+ - tests/fixtures/pass16.json
103
+ - tests/fixtures/fail4.json
120
104
  - tests/fixtures/fail1.json
121
- - tests/fixtures/fail10.json
122
- - tests/fixtures/fail11.json
123
- - tests/fixtures/fail12.json
124
- - tests/fixtures/fail13.json
125
- - tests/fixtures/fail14.json
126
- - tests/fixtures/fail18.json
105
+ - tests/fixtures/fail28.json
106
+ - tests/fixtures/fail8.json
127
107
  - tests/fixtures/fail19.json
128
- - tests/fixtures/fail2.json
108
+ - tests/fixtures/pass2.json
109
+ - tests/fixtures/pass26.json
110
+ - tests/fixtures/pass1.json
111
+ - tests/fixtures/fail3.json
129
112
  - tests/fixtures/fail20.json
130
- - tests/fixtures/fail21.json
113
+ - tests/fixtures/pass3.json
114
+ - tests/fixtures/pass15.json
115
+ - tests/fixtures/fail12.json
116
+ - tests/fixtures/fail13.json
131
117
  - tests/fixtures/fail22.json
132
- - tests/fixtures/fail23.json
133
118
  - tests/fixtures/fail24.json
134
- - tests/fixtures/fail25.json
135
- - tests/fixtures/fail27.json
136
- - tests/fixtures/fail28.json
137
- - tests/fixtures/fail3.json
138
- - tests/fixtures/fail4.json
139
- - tests/fixtures/fail5.json
119
+ - tests/fixtures/fail9.json
120
+ - tests/fixtures/fail2.json
121
+ - tests/fixtures/fail14.json
140
122
  - tests/fixtures/fail6.json
123
+ - tests/fixtures/fail21.json
141
124
  - tests/fixtures/fail7.json
142
- - tests/fixtures/fail8.json
143
- - tests/fixtures/fail9.json
144
- - tests/fixtures/pass1.json
145
- - tests/fixtures/pass15.json
146
- - tests/fixtures/pass16.json
147
125
  - tests/fixtures/pass17.json
148
- - tests/fixtures/pass2.json
149
- - tests/fixtures/pass26.json
150
- - tests/fixtures/pass3.json
126
+ - tests/fixtures/fail11.json
127
+ - tests/fixtures/fail25.json
128
+ - tests/fixtures/fail5.json
129
+ - tests/fixtures/fail18.json
130
+ - tests/fixtures/fail27.json
131
+ - tests/fixtures/fail10.json
132
+ - tests/fixtures/fail23.json
133
+ - tests/test_json_rails.rb
151
134
  - tests/test_json.rb
152
- - tests/test_json_addition.rb
153
- - tests/test_json_fixtures.rb
154
135
  - tests/test_json_generate.rb
155
- - tests/test_json_rails.rb
156
136
  - tests/test_json_unicode.rb
157
- - tools
158
- - tools/fuzz.rb
159
- - tools/server.rb
137
+ - tests/test_json_fixtures.rb
138
+ - COPYING
139
+ - doc-main.txt
140
+ - install.rb
160
141
  has_rdoc: true
161
142
  homepage: http://json.rubyforge.org
143
+ licenses: []
144
+
162
145
  post_install_message:
163
146
  rdoc_options:
164
147
  - --title
@@ -184,14 +167,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
184
167
  requirements: []
185
168
 
186
169
  rubyforge_project: json
187
- rubygems_version: 1.3.1
170
+ rubygems_version: 1.3.4
188
171
  signing_key:
189
- specification_version: 2
172
+ specification_version: 3
190
173
  summary: A JSON implementation as a Ruby extension
191
174
  test_files:
192
- - tests/test_json.rb
193
175
  - tests/test_json_addition.rb
194
- - tests/test_json_fixtures.rb
195
- - tests/test_json_generate.rb
196
176
  - tests/test_json_rails.rb
177
+ - tests/test_json.rb
178
+ - tests/test_json_generate.rb
197
179
  - tests/test_json_unicode.rb
180
+ - tests/test_json_fixtures.rb