json_pure 1.1.8 → 1.1.9

Sign up to get free protection for your applications and to get access to all the features.
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
data/lib/json/version.rb CHANGED
@@ -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_pure
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
@@ -20,144 +20,127 @@ executables:
20
20
  - prettify_json.rb
21
21
  extensions: []
22
22
 
23
- extra_rdoc_files: []
24
-
23
+ extra_rdoc_files:
24
+ - doc-main.txt
25
25
  files:
26
26
  - CHANGES
27
- - COPYING
27
+ - bin/edit_json.rb
28
+ - bin/prettify_json.rb
29
+ - VERSION
28
30
  - GPL
29
- - README
30
- - Rakefile
31
31
  - TODO
32
- - VERSION
33
- - benchmarks
34
- - benchmarks/data-p4-3GHz-ruby18
32
+ - README
33
+ - benchmarks/parser_benchmark.rb
34
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log
35
35
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log
36
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
37
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
38
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat
39
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat
40
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat
36
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat
41
37
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat
38
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat
39
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
40
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
41
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log
42
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat
43
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat
42
44
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log
43
45
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat
44
46
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat
47
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat
45
48
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat
46
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat
47
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat
48
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat
49
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log
50
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat
51
- - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat
49
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat
50
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat
52
51
  - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log
53
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log
54
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat
55
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat
56
52
  - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log
57
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat
58
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat
59
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log
60
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat
61
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat
62
53
  - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log
63
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat
64
- - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat
54
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log
55
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat
56
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat
57
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat
58
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat
65
59
  - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log
66
- - benchmarks/data
60
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat
61
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat
62
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat
63
+ - benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat
64
+ - benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat
67
65
  - benchmarks/generator_benchmark.rb
68
- - benchmarks/parser_benchmark.rb
69
- - bin
70
- - bin/edit_json.rb
71
- - bin/prettify_json.rb
72
- - data
73
- - data/example.json
74
- - data/index.html
75
- - data/prototype.js
76
- - diagrams
77
- - doc-main.txt
78
- - ext
79
- - ext/json
80
- - ext/json/ext
81
- - ext/json/ext/generator
82
66
  - ext/json/ext/generator/extconf.rb
83
- - ext/json/ext/generator/generator.c
84
67
  - ext/json/ext/generator/unicode.c
68
+ - ext/json/ext/generator/generator.c
85
69
  - ext/json/ext/generator/unicode.h
86
- - ext/json/ext/parser
87
70
  - ext/json/ext/parser/extconf.rb
88
- - ext/json/ext/parser/parser.c
89
71
  - ext/json/ext/parser/parser.rl
90
72
  - ext/json/ext/parser/unicode.c
73
+ - ext/json/ext/parser/parser.c
91
74
  - ext/json/ext/parser/unicode.h
92
- - install.rb
93
- - lib
75
+ - Rakefile
76
+ - tools/fuzz.rb
77
+ - tools/server.rb
94
78
  - lib/json.rb
95
- - lib/json
96
- - lib/json/Array.xpm
97
- - lib/json/FalseClass.xpm
98
- - lib/json/Hash.xpm
79
+ - lib/json/json.xpm
99
80
  - lib/json/Key.xpm
100
- - lib/json/NilClass.xpm
101
- - lib/json/Numeric.xpm
102
81
  - lib/json/String.xpm
103
- - lib/json/TrueClass.xpm
104
- - lib/json/add
105
- - lib/json/add/core.rb
82
+ - lib/json/Numeric.xpm
83
+ - lib/json/Hash.xpm
106
84
  - lib/json/add/rails.rb
85
+ - lib/json/add/core.rb
107
86
  - lib/json/common.rb
108
- - lib/json/editor.rb
109
- - lib/json/ext.rb
110
- - lib/json/ext
111
- - lib/json/json.xpm
112
- - lib/json/pure.rb
113
- - lib/json/pure
87
+ - lib/json/Array.xpm
88
+ - lib/json/FalseClass.xpm
114
89
  - lib/json/pure/generator.rb
115
90
  - lib/json/pure/parser.rb
91
+ - lib/json/TrueClass.xpm
92
+ - lib/json/pure.rb
116
93
  - lib/json/version.rb
117
- - tests
118
- - tests/fixtures
94
+ - lib/json/ext.rb
95
+ - lib/json/editor.rb
96
+ - lib/json/NilClass.xpm
97
+ - data/example.json
98
+ - data/index.html
99
+ - data/prototype.js
100
+ - tests/test_json_addition.rb
101
+ - tests/fixtures/pass16.json
102
+ - tests/fixtures/fail4.json
119
103
  - tests/fixtures/fail1.json
120
- - tests/fixtures/fail10.json
121
- - tests/fixtures/fail11.json
122
- - tests/fixtures/fail12.json
123
- - tests/fixtures/fail13.json
124
- - tests/fixtures/fail14.json
125
- - tests/fixtures/fail18.json
104
+ - tests/fixtures/fail28.json
105
+ - tests/fixtures/fail8.json
126
106
  - tests/fixtures/fail19.json
127
- - tests/fixtures/fail2.json
107
+ - tests/fixtures/pass2.json
108
+ - tests/fixtures/pass26.json
109
+ - tests/fixtures/pass1.json
110
+ - tests/fixtures/fail3.json
128
111
  - tests/fixtures/fail20.json
129
- - tests/fixtures/fail21.json
112
+ - tests/fixtures/pass3.json
113
+ - tests/fixtures/pass15.json
114
+ - tests/fixtures/fail12.json
115
+ - tests/fixtures/fail13.json
130
116
  - tests/fixtures/fail22.json
131
- - tests/fixtures/fail23.json
132
117
  - tests/fixtures/fail24.json
133
- - tests/fixtures/fail25.json
134
- - tests/fixtures/fail27.json
135
- - tests/fixtures/fail28.json
136
- - tests/fixtures/fail3.json
137
- - tests/fixtures/fail4.json
138
- - tests/fixtures/fail5.json
118
+ - tests/fixtures/fail9.json
119
+ - tests/fixtures/fail2.json
120
+ - tests/fixtures/fail14.json
139
121
  - tests/fixtures/fail6.json
122
+ - tests/fixtures/fail21.json
140
123
  - tests/fixtures/fail7.json
141
- - tests/fixtures/fail8.json
142
- - tests/fixtures/fail9.json
143
- - tests/fixtures/pass1.json
144
- - tests/fixtures/pass15.json
145
- - tests/fixtures/pass16.json
146
124
  - tests/fixtures/pass17.json
147
- - tests/fixtures/pass2.json
148
- - tests/fixtures/pass26.json
149
- - tests/fixtures/pass3.json
125
+ - tests/fixtures/fail11.json
126
+ - tests/fixtures/fail25.json
127
+ - tests/fixtures/fail5.json
128
+ - tests/fixtures/fail18.json
129
+ - tests/fixtures/fail27.json
130
+ - tests/fixtures/fail10.json
131
+ - tests/fixtures/fail23.json
132
+ - tests/test_json_rails.rb
150
133
  - tests/test_json.rb
151
- - tests/test_json_addition.rb
152
- - tests/test_json_fixtures.rb
153
134
  - tests/test_json_generate.rb
154
- - tests/test_json_rails.rb
155
135
  - tests/test_json_unicode.rb
156
- - tools
157
- - tools/fuzz.rb
158
- - tools/server.rb
136
+ - tests/test_json_fixtures.rb
137
+ - COPYING
138
+ - doc-main.txt
139
+ - install.rb
159
140
  has_rdoc: true
160
141
  homepage: http://json.rubyforge.org
142
+ licenses: []
143
+
161
144
  post_install_message:
162
145
  rdoc_options:
163
146
  - --title
@@ -181,14 +164,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
181
164
  requirements: []
182
165
 
183
166
  rubyforge_project: json
184
- rubygems_version: 1.3.1
167
+ rubygems_version: 1.3.4
185
168
  signing_key:
186
- specification_version: 2
169
+ specification_version: 3
187
170
  summary: A JSON implementation in Ruby
188
171
  test_files:
189
- - tests/test_json.rb
190
172
  - tests/test_json_addition.rb
191
- - tests/test_json_fixtures.rb
192
- - tests/test_json_generate.rb
193
173
  - tests/test_json_rails.rb
174
+ - tests/test_json.rb
175
+ - tests/test_json_generate.rb
194
176
  - tests/test_json_unicode.rb
177
+ - tests/test_json_fixtures.rb