yajl-ruby 1.0.0-x86-mingw32 → 1.1.0-x86-mingw32
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 yajl-ruby might be problematic. Click here for more details.
- data/.travis.yml +6 -0
- data/CHANGELOG.md +6 -1
- data/README.md +2 -2
- data/ext/yajl/yajl_ext.c +2 -2
- data/ext/yajl/yajl_ext.h +2 -2
- data/lib/yajl/1.8/yajl.so +0 -0
- data/lib/yajl/1.9/yajl.so +0 -0
- data/lib/yajl/json_gem.rb +1 -3
- data/lib/yajl/version.rb +2 -2
- data/spec/encoding/encoding_spec.rb +5 -2
- data/yajl-ruby.gemspec +1 -0
- metadata +85 -54
data/.travis.yml
ADDED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.1.0 (November 9th, 2011)
|
4
|
+
* fix compilation due to a "bug" in gcc-llvm on 10.7.2
|
5
|
+
* fix gemspec so ruby 1.8.6 or later is required
|
6
|
+
*
|
7
|
+
|
3
8
|
## 1.0.0 (September 13th, 2011)
|
4
9
|
* add deprecation notice for Yajl's Bzip2 support
|
5
10
|
* add deprecation notice for Yajl's Deflate support
|
@@ -324,4 +329,4 @@
|
|
324
329
|
* updated gemspec and README
|
325
330
|
|
326
331
|
## 0.1.0 (April 21st, 2009)
|
327
|
-
* initial release - gemified
|
332
|
+
* initial release - gemified
|
data/README.md
CHANGED
@@ -224,7 +224,7 @@ str = Yajl::Encoder.encode(obj)
|
|
224
224
|
|
225
225
|
You can also use `Yajl::Bzip2::StreamWriter` and `Yajl::Deflate::StreamWriter`. So you can pick whichever fits your CPU/bandwidth sweet-spot.
|
226
226
|
|
227
|
-
|
227
|
+
### HTML Safety
|
228
228
|
|
229
229
|
If you plan on embedding the output from the encoder in the DOM, you'll want to make sure you use the html_safe option on the encoder. This will escape all '/' characters to ensure no closing tags can be injected, preventing XSS.
|
230
230
|
|
@@ -236,7 +236,7 @@ Meaning the following should be perfectly safe:
|
|
236
236
|
</script>
|
237
237
|
```
|
238
238
|
|
239
|
-
|
239
|
+
## JSON gem Compatibility API
|
240
240
|
|
241
241
|
The JSON gem compatibility API isn't enabled by default. You have to explicitly require it like so:
|
242
242
|
|
data/ext/yajl/yajl_ext.c
CHANGED
@@ -33,7 +33,7 @@
|
|
33
33
|
return rb_yajl_encoder_encode(1, &self, rb_encoder); \
|
34
34
|
|
35
35
|
/* Helpers for building objects */
|
36
|
-
|
36
|
+
static void yajl_check_and_fire_callback(void * ctx) {
|
37
37
|
yajl_parser_wrapper * wrapper;
|
38
38
|
GetParser((VALUE)ctx, wrapper);
|
39
39
|
|
@@ -54,7 +54,7 @@ inline void yajl_check_and_fire_callback(void * ctx) {
|
|
54
54
|
}
|
55
55
|
}
|
56
56
|
|
57
|
-
|
57
|
+
static void yajl_set_static_value(void * ctx, VALUE val) {
|
58
58
|
yajl_parser_wrapper * wrapper;
|
59
59
|
VALUE lastEntry, hash;
|
60
60
|
int len;
|
data/ext/yajl/yajl_ext.h
CHANGED
@@ -61,8 +61,8 @@ static ID sym_allow_comments, sym_check_utf8, sym_pretty, sym_indent, sym_termin
|
|
61
61
|
#define GetParser(obj, sval) (sval = (yajl_parser_wrapper*)DATA_PTR(obj));
|
62
62
|
#define GetEncoder(obj, sval) (sval = (yajl_encoder_wrapper*)DATA_PTR(obj));
|
63
63
|
|
64
|
-
|
65
|
-
|
64
|
+
static void yajl_check_and_fire_callback(void * ctx);
|
65
|
+
static void yajl_set_static_value(void * ctx, VALUE val);
|
66
66
|
void yajl_encode_part(void * wrapper, VALUE obj, VALUE io);
|
67
67
|
void yajl_parse_chunk(const unsigned char * chunk, unsigned int len, yajl_handle parser);
|
68
68
|
|
data/lib/yajl/1.8/yajl.so
CHANGED
Binary file
|
data/lib/yajl/1.9/yajl.so
CHANGED
Binary file
|
data/lib/yajl/json_gem.rb
CHANGED
@@ -1,5 +1,3 @@
|
|
1
|
-
puts "DEPRECATION WARNING: Yajl's JSON gem compatibility API is going to be removed in 2.0"
|
2
|
-
|
3
1
|
require 'yajl' unless defined?(Yajl::Parser)
|
4
2
|
require 'yajl/json_gem/parsing'
|
5
3
|
require 'yajl/json_gem/encoding'
|
@@ -12,4 +10,4 @@ module ::Kernel
|
|
12
10
|
JSON.generate(object, opts)
|
13
11
|
end
|
14
12
|
end
|
15
|
-
end
|
13
|
+
end
|
data/lib/yajl/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
module Yajl
|
2
|
-
VERSION = '1.
|
3
|
-
end
|
2
|
+
VERSION = '1.1.0'
|
3
|
+
end
|
@@ -9,13 +9,13 @@ end
|
|
9
9
|
|
10
10
|
class TheMindKiller
|
11
11
|
def to_json
|
12
|
-
|
12
|
+
nil
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
16
16
|
class TheMindKillerDuce
|
17
17
|
def to_s
|
18
|
-
|
18
|
+
nil
|
19
19
|
end
|
20
20
|
end
|
21
21
|
|
@@ -265,6 +265,9 @@ describe "Yajl JSON encoder" do
|
|
265
265
|
|
266
266
|
it "return value of #to_s must be a string" do
|
267
267
|
lambda {
|
268
|
+
if TheMindKillerDuce.send(:method_defined?, :to_json)
|
269
|
+
TheMindKillerDuce.send(:undef_method, :to_json)
|
270
|
+
end
|
268
271
|
Yajl::Encoder.encode(TheMindKillerDuce.new)
|
269
272
|
}.should raise_error(TypeError)
|
270
273
|
end
|
data/yajl-ruby.gemspec
CHANGED
@@ -13,6 +13,7 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.rubygems_version = %q{1.4.2}
|
14
14
|
s.summary = %q{Ruby C bindings to the excellent Yajl JSON stream-based parser library.}
|
15
15
|
s.test_files = `git ls-files spec examples`.split("\n")
|
16
|
+
s.required_ruby_version = ">= 1.8.6"
|
16
17
|
|
17
18
|
# tests
|
18
19
|
s.add_development_dependency 'rake-compiler', ">= 0.7.5"
|
metadata
CHANGED
@@ -1,70 +1,96 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: yajl-ruby
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 1
|
9
|
+
- 0
|
10
|
+
version: 1.1.0
|
6
11
|
platform: x86-mingw32
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- Brian Lopez
|
9
14
|
- Lloyd Hilaiel
|
10
15
|
autorequire:
|
11
16
|
bindir: bin
|
12
17
|
cert_chain: []
|
13
|
-
|
18
|
+
|
19
|
+
date: 2011-11-09 00:00:00 -08:00
|
14
20
|
default_executable:
|
15
|
-
dependencies:
|
16
|
-
- !ruby/object:Gem::Dependency
|
17
|
-
|
18
|
-
requirement: &70201852992700 !ruby/object:Gem::Requirement
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
19
24
|
none: false
|
20
|
-
requirements:
|
21
|
-
- -
|
22
|
-
- !ruby/object:Gem::Version
|
25
|
+
requirements:
|
26
|
+
- - ">="
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
hash: 9
|
29
|
+
segments:
|
30
|
+
- 0
|
31
|
+
- 7
|
32
|
+
- 5
|
23
33
|
version: 0.7.5
|
34
|
+
name: rake-compiler
|
24
35
|
type: :development
|
25
36
|
prerelease: false
|
26
|
-
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
|
29
|
-
requirement: &70201857314280 !ruby/object:Gem::Requirement
|
37
|
+
requirement: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
30
40
|
none: false
|
31
|
-
requirements:
|
32
|
-
- -
|
33
|
-
- !ruby/object:Gem::Version
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 15
|
45
|
+
segments:
|
46
|
+
- 2
|
47
|
+
- 0
|
48
|
+
- 0
|
34
49
|
version: 2.0.0
|
50
|
+
name: rspec
|
35
51
|
type: :development
|
36
52
|
prerelease: false
|
37
|
-
|
38
|
-
- !ruby/object:Gem::Dependency
|
39
|
-
|
40
|
-
requirement: &70201857704040 !ruby/object:Gem::Requirement
|
53
|
+
requirement: *id002
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
41
56
|
none: false
|
42
|
-
requirements:
|
43
|
-
- -
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
hash: 3
|
61
|
+
segments:
|
62
|
+
- 0
|
63
|
+
version: "0"
|
64
|
+
name: activesupport
|
46
65
|
type: :development
|
47
66
|
prerelease: false
|
48
|
-
|
49
|
-
- !ruby/object:Gem::Dependency
|
50
|
-
|
51
|
-
requirement: &70201857706960 !ruby/object:Gem::Requirement
|
67
|
+
requirement: *id003
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
52
70
|
none: false
|
53
|
-
requirements:
|
54
|
-
- -
|
55
|
-
- !ruby/object:Gem::Version
|
56
|
-
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
hash: 3
|
75
|
+
segments:
|
76
|
+
- 0
|
77
|
+
version: "0"
|
78
|
+
name: json
|
57
79
|
type: :development
|
58
80
|
prerelease: false
|
59
|
-
|
81
|
+
requirement: *id004
|
60
82
|
description:
|
61
83
|
email: seniorlopez@gmail.com
|
62
84
|
executables: []
|
85
|
+
|
63
86
|
extensions: []
|
87
|
+
|
64
88
|
extra_rdoc_files: []
|
65
|
-
|
89
|
+
|
90
|
+
files:
|
66
91
|
- .gitignore
|
67
92
|
- .rspec
|
93
|
+
- .travis.yml
|
68
94
|
- CHANGELOG.md
|
69
95
|
- Gemfile
|
70
96
|
- MIT-LICENSE
|
@@ -217,35 +243,40 @@ files:
|
|
217
243
|
has_rdoc: true
|
218
244
|
homepage: http://github.com/brianmario/yajl-ruby
|
219
245
|
licenses: []
|
246
|
+
|
220
247
|
post_install_message:
|
221
248
|
rdoc_options: []
|
222
|
-
|
249
|
+
|
250
|
+
require_paths:
|
223
251
|
- lib
|
224
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
252
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
225
253
|
none: false
|
226
|
-
requirements:
|
227
|
-
- -
|
228
|
-
- !ruby/object:Gem::Version
|
229
|
-
|
230
|
-
segments:
|
231
|
-
-
|
232
|
-
|
233
|
-
|
254
|
+
requirements:
|
255
|
+
- - ">="
|
256
|
+
- !ruby/object:Gem::Version
|
257
|
+
hash: 59
|
258
|
+
segments:
|
259
|
+
- 1
|
260
|
+
- 8
|
261
|
+
- 6
|
262
|
+
version: 1.8.6
|
263
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
234
264
|
none: false
|
235
|
-
requirements:
|
236
|
-
- -
|
237
|
-
- !ruby/object:Gem::Version
|
238
|
-
|
239
|
-
segments:
|
265
|
+
requirements:
|
266
|
+
- - ">="
|
267
|
+
- !ruby/object:Gem::Version
|
268
|
+
hash: 3
|
269
|
+
segments:
|
240
270
|
- 0
|
241
|
-
|
271
|
+
version: "0"
|
242
272
|
requirements: []
|
273
|
+
|
243
274
|
rubyforge_project:
|
244
275
|
rubygems_version: 1.6.2
|
245
276
|
signing_key:
|
246
277
|
specification_version: 3
|
247
278
|
summary: Ruby C bindings to the excellent Yajl JSON stream-based parser library.
|
248
|
-
test_files:
|
279
|
+
test_files:
|
249
280
|
- examples/encoding/chunked_encoding.rb
|
250
281
|
- examples/encoding/one_shot.rb
|
251
282
|
- examples/encoding/to_an_io.rb
|