benofsky-yajl-ruby 0.7.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (143) hide show
  1. data/.gitignore +9 -0
  2. data/CHANGELOG.md +281 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.rdoc +320 -0
  5. data/Rakefile +40 -0
  6. data/VERSION.yml +5 -0
  7. data/benchmark/encode.rb +58 -0
  8. data/benchmark/encode_json_and_marshal.rb +42 -0
  9. data/benchmark/encode_json_and_yaml.rb +53 -0
  10. data/benchmark/http.rb +32 -0
  11. data/benchmark/parse.rb +59 -0
  12. data/benchmark/parse_json_and_marshal.rb +50 -0
  13. data/benchmark/parse_json_and_yaml.rb +55 -0
  14. data/benchmark/parse_stream.rb +54 -0
  15. data/benchmark/subjects/item.json +1 -0
  16. data/benchmark/subjects/ohai.json +1216 -0
  17. data/benchmark/subjects/ohai.marshal_dump +0 -0
  18. data/benchmark/subjects/ohai.yml +975 -0
  19. data/benchmark/subjects/twitter_search.json +1 -0
  20. data/benchmark/subjects/twitter_stream.json +430 -0
  21. data/benchmark/subjects/unicode.json +1 -0
  22. data/examples/encoding/chunked_encoding.rb +27 -0
  23. data/examples/encoding/one_shot.rb +13 -0
  24. data/examples/encoding/to_an_io.rb +12 -0
  25. data/examples/http/twitter_search_api.rb +12 -0
  26. data/examples/http/twitter_stream_api.rb +26 -0
  27. data/examples/parsing/from_file.rb +14 -0
  28. data/examples/parsing/from_stdin.rb +9 -0
  29. data/examples/parsing/from_string.rb +13 -0
  30. data/ext/api/yajl_common.h +85 -0
  31. data/ext/api/yajl_gen.h +159 -0
  32. data/ext/api/yajl_parse.h +196 -0
  33. data/ext/extconf.rb +9 -0
  34. data/ext/yajl.c +164 -0
  35. data/ext/yajl_alloc.c +65 -0
  36. data/ext/yajl_alloc.h +50 -0
  37. data/ext/yajl_buf.c +119 -0
  38. data/ext/yajl_buf.h +73 -0
  39. data/ext/yajl_bytestack.h +85 -0
  40. data/ext/yajl_encode.c +188 -0
  41. data/ext/yajl_encode.h +50 -0
  42. data/ext/yajl_ext.c +911 -0
  43. data/ext/yajl_ext.h +128 -0
  44. data/ext/yajl_gen.c +317 -0
  45. data/ext/yajl_lex.c +747 -0
  46. data/ext/yajl_lex.h +135 -0
  47. data/ext/yajl_parser.c +450 -0
  48. data/ext/yajl_parser.h +82 -0
  49. data/lib/yajl/bzip2/stream_reader.rb +32 -0
  50. data/lib/yajl/bzip2/stream_writer.rb +15 -0
  51. data/lib/yajl/bzip2.rb +11 -0
  52. data/lib/yajl/deflate/stream_reader.rb +44 -0
  53. data/lib/yajl/deflate/stream_writer.rb +21 -0
  54. data/lib/yajl/deflate.rb +6 -0
  55. data/lib/yajl/gzip/stream_reader.rb +31 -0
  56. data/lib/yajl/gzip/stream_writer.rb +14 -0
  57. data/lib/yajl/gzip.rb +6 -0
  58. data/lib/yajl/http_stream.rb +197 -0
  59. data/lib/yajl/json_gem/encoding.rb +50 -0
  60. data/lib/yajl/json_gem/parsing.rb +27 -0
  61. data/lib/yajl/json_gem.rb +14 -0
  62. data/lib/yajl.rb +93 -0
  63. data/spec/encoding/encoding_spec.rb +234 -0
  64. data/spec/global/global_spec.rb +55 -0
  65. data/spec/http/fixtures/http.bzip2.dump +0 -0
  66. data/spec/http/fixtures/http.chunked.dump +11 -0
  67. data/spec/http/fixtures/http.deflate.dump +0 -0
  68. data/spec/http/fixtures/http.error.dump +12 -0
  69. data/spec/http/fixtures/http.gzip.dump +0 -0
  70. data/spec/http/fixtures/http.html.dump +1220 -0
  71. data/spec/http/fixtures/http.raw.dump +1226 -0
  72. data/spec/http/http_delete_spec.rb +99 -0
  73. data/spec/http/http_error_spec.rb +33 -0
  74. data/spec/http/http_get_spec.rb +110 -0
  75. data/spec/http/http_post_spec.rb +124 -0
  76. data/spec/http/http_put_spec.rb +106 -0
  77. data/spec/json_gem_compatibility/compatibility_spec.rb +203 -0
  78. data/spec/parsing/active_support_spec.rb +64 -0
  79. data/spec/parsing/chunked_spec.rb +98 -0
  80. data/spec/parsing/fixtures/fail.15.json +1 -0
  81. data/spec/parsing/fixtures/fail.16.json +1 -0
  82. data/spec/parsing/fixtures/fail.17.json +1 -0
  83. data/spec/parsing/fixtures/fail.26.json +1 -0
  84. data/spec/parsing/fixtures/fail11.json +1 -0
  85. data/spec/parsing/fixtures/fail12.json +1 -0
  86. data/spec/parsing/fixtures/fail13.json +1 -0
  87. data/spec/parsing/fixtures/fail14.json +1 -0
  88. data/spec/parsing/fixtures/fail19.json +1 -0
  89. data/spec/parsing/fixtures/fail20.json +1 -0
  90. data/spec/parsing/fixtures/fail21.json +1 -0
  91. data/spec/parsing/fixtures/fail22.json +1 -0
  92. data/spec/parsing/fixtures/fail23.json +1 -0
  93. data/spec/parsing/fixtures/fail24.json +1 -0
  94. data/spec/parsing/fixtures/fail25.json +1 -0
  95. data/spec/parsing/fixtures/fail27.json +2 -0
  96. data/spec/parsing/fixtures/fail28.json +2 -0
  97. data/spec/parsing/fixtures/fail3.json +1 -0
  98. data/spec/parsing/fixtures/fail4.json +1 -0
  99. data/spec/parsing/fixtures/fail5.json +1 -0
  100. data/spec/parsing/fixtures/fail6.json +1 -0
  101. data/spec/parsing/fixtures/fail9.json +1 -0
  102. data/spec/parsing/fixtures/pass.array.json +6 -0
  103. data/spec/parsing/fixtures/pass.codepoints_from_unicode_org.json +1 -0
  104. data/spec/parsing/fixtures/pass.contacts.json +1 -0
  105. data/spec/parsing/fixtures/pass.db100.xml.json +1 -0
  106. data/spec/parsing/fixtures/pass.db1000.xml.json +1 -0
  107. data/spec/parsing/fixtures/pass.dc_simple_with_comments.json +11 -0
  108. data/spec/parsing/fixtures/pass.deep_arrays.json +1 -0
  109. data/spec/parsing/fixtures/pass.difficult_json_c_test_case.json +1 -0
  110. data/spec/parsing/fixtures/pass.difficult_json_c_test_case_with_comments.json +1 -0
  111. data/spec/parsing/fixtures/pass.doubles.json +1 -0
  112. data/spec/parsing/fixtures/pass.empty_array.json +1 -0
  113. data/spec/parsing/fixtures/pass.empty_string.json +1 -0
  114. data/spec/parsing/fixtures/pass.escaped_bulgarian.json +4 -0
  115. data/spec/parsing/fixtures/pass.escaped_foobar.json +1 -0
  116. data/spec/parsing/fixtures/pass.item.json +1 -0
  117. data/spec/parsing/fixtures/pass.json-org-sample1.json +23 -0
  118. data/spec/parsing/fixtures/pass.json-org-sample2.json +11 -0
  119. data/spec/parsing/fixtures/pass.json-org-sample3.json +26 -0
  120. data/spec/parsing/fixtures/pass.json-org-sample4-nows.json +88 -0
  121. data/spec/parsing/fixtures/pass.json-org-sample4.json +89 -0
  122. data/spec/parsing/fixtures/pass.json-org-sample5.json +27 -0
  123. data/spec/parsing/fixtures/pass.map-spain.xml.json +1 -0
  124. data/spec/parsing/fixtures/pass.ns-invoice100.xml.json +1 -0
  125. data/spec/parsing/fixtures/pass.ns-soap.xml.json +1 -0
  126. data/spec/parsing/fixtures/pass.numbers-fp-4k.json +6 -0
  127. data/spec/parsing/fixtures/pass.numbers-fp-64k.json +61 -0
  128. data/spec/parsing/fixtures/pass.numbers-int-4k.json +11 -0
  129. data/spec/parsing/fixtures/pass.numbers-int-64k.json +154 -0
  130. data/spec/parsing/fixtures/pass.twitter-search.json +1 -0
  131. data/spec/parsing/fixtures/pass.twitter-search2.json +1 -0
  132. data/spec/parsing/fixtures/pass.unicode.json +3315 -0
  133. data/spec/parsing/fixtures/pass.yelp.json +1 -0
  134. data/spec/parsing/fixtures/pass1.json +56 -0
  135. data/spec/parsing/fixtures/pass2.json +1 -0
  136. data/spec/parsing/fixtures/pass3.json +6 -0
  137. data/spec/parsing/fixtures_spec.rb +41 -0
  138. data/spec/parsing/one_off_spec.rb +81 -0
  139. data/spec/rcov.opts +3 -0
  140. data/spec/spec.opts +2 -0
  141. data/spec/spec_helper.rb +16 -0
  142. data/yajl-ruby.gemspec +203 -0
  143. metadata +232 -0
data/yajl-ruby.gemspec ADDED
@@ -0,0 +1,203 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{yajl-ruby}
8
+ s.version = "0.7.6"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Brian Lopez", "Lloyd Hilaiel"]
12
+ s.date = %q{2010-05-07}
13
+ s.email = %q{seniorlopez@gmail.com}
14
+ s.extensions = ["ext/extconf.rb"]
15
+ s.extra_rdoc_files = [
16
+ "README.rdoc",
17
+ "ext/yajl.c"
18
+ ]
19
+ s.files = [
20
+ ".gitignore",
21
+ "CHANGELOG.md",
22
+ "MIT-LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION.yml",
26
+ "benchmark/encode.rb",
27
+ "benchmark/encode_json_and_marshal.rb",
28
+ "benchmark/encode_json_and_yaml.rb",
29
+ "benchmark/http.rb",
30
+ "benchmark/parse.rb",
31
+ "benchmark/parse_json_and_marshal.rb",
32
+ "benchmark/parse_json_and_yaml.rb",
33
+ "benchmark/parse_stream.rb",
34
+ "benchmark/subjects/item.json",
35
+ "benchmark/subjects/ohai.json",
36
+ "benchmark/subjects/ohai.marshal_dump",
37
+ "benchmark/subjects/ohai.yml",
38
+ "benchmark/subjects/twitter_search.json",
39
+ "benchmark/subjects/twitter_stream.json",
40
+ "benchmark/subjects/unicode.json",
41
+ "examples/encoding/chunked_encoding.rb",
42
+ "examples/encoding/one_shot.rb",
43
+ "examples/encoding/to_an_io.rb",
44
+ "examples/http/twitter_search_api.rb",
45
+ "examples/http/twitter_stream_api.rb",
46
+ "examples/parsing/from_file.rb",
47
+ "examples/parsing/from_stdin.rb",
48
+ "examples/parsing/from_string.rb",
49
+ "ext/api/yajl_common.h",
50
+ "ext/api/yajl_gen.h",
51
+ "ext/api/yajl_parse.h",
52
+ "ext/extconf.rb",
53
+ "ext/yajl.c",
54
+ "ext/yajl_alloc.c",
55
+ "ext/yajl_alloc.h",
56
+ "ext/yajl_buf.c",
57
+ "ext/yajl_buf.h",
58
+ "ext/yajl_bytestack.h",
59
+ "ext/yajl_encode.c",
60
+ "ext/yajl_encode.h",
61
+ "ext/yajl_ext.c",
62
+ "ext/yajl_ext.h",
63
+ "ext/yajl_gen.c",
64
+ "ext/yajl_lex.c",
65
+ "ext/yajl_lex.h",
66
+ "ext/yajl_parser.c",
67
+ "ext/yajl_parser.h",
68
+ "lib/yajl.rb",
69
+ "lib/yajl/bzip2.rb",
70
+ "lib/yajl/bzip2/stream_reader.rb",
71
+ "lib/yajl/bzip2/stream_writer.rb",
72
+ "lib/yajl/deflate.rb",
73
+ "lib/yajl/deflate/stream_reader.rb",
74
+ "lib/yajl/deflate/stream_writer.rb",
75
+ "lib/yajl/gzip.rb",
76
+ "lib/yajl/gzip/stream_reader.rb",
77
+ "lib/yajl/gzip/stream_writer.rb",
78
+ "lib/yajl/http_stream.rb",
79
+ "lib/yajl/json_gem.rb",
80
+ "lib/yajl/json_gem/encoding.rb",
81
+ "lib/yajl/json_gem/parsing.rb",
82
+ "spec/encoding/encoding_spec.rb",
83
+ "spec/global/global_spec.rb",
84
+ "spec/http/fixtures/http.bzip2.dump",
85
+ "spec/http/fixtures/http.chunked.dump",
86
+ "spec/http/fixtures/http.deflate.dump",
87
+ "spec/http/fixtures/http.error.dump",
88
+ "spec/http/fixtures/http.gzip.dump",
89
+ "spec/http/fixtures/http.html.dump",
90
+ "spec/http/fixtures/http.raw.dump",
91
+ "spec/http/http_delete_spec.rb",
92
+ "spec/http/http_error_spec.rb",
93
+ "spec/http/http_get_spec.rb",
94
+ "spec/http/http_post_spec.rb",
95
+ "spec/http/http_put_spec.rb",
96
+ "spec/json_gem_compatibility/compatibility_spec.rb",
97
+ "spec/parsing/active_support_spec.rb",
98
+ "spec/parsing/chunked_spec.rb",
99
+ "spec/parsing/fixtures/fail.15.json",
100
+ "spec/parsing/fixtures/fail.16.json",
101
+ "spec/parsing/fixtures/fail.17.json",
102
+ "spec/parsing/fixtures/fail.26.json",
103
+ "spec/parsing/fixtures/fail11.json",
104
+ "spec/parsing/fixtures/fail12.json",
105
+ "spec/parsing/fixtures/fail13.json",
106
+ "spec/parsing/fixtures/fail14.json",
107
+ "spec/parsing/fixtures/fail19.json",
108
+ "spec/parsing/fixtures/fail20.json",
109
+ "spec/parsing/fixtures/fail21.json",
110
+ "spec/parsing/fixtures/fail22.json",
111
+ "spec/parsing/fixtures/fail23.json",
112
+ "spec/parsing/fixtures/fail24.json",
113
+ "spec/parsing/fixtures/fail25.json",
114
+ "spec/parsing/fixtures/fail27.json",
115
+ "spec/parsing/fixtures/fail28.json",
116
+ "spec/parsing/fixtures/fail3.json",
117
+ "spec/parsing/fixtures/fail4.json",
118
+ "spec/parsing/fixtures/fail5.json",
119
+ "spec/parsing/fixtures/fail6.json",
120
+ "spec/parsing/fixtures/fail9.json",
121
+ "spec/parsing/fixtures/pass.array.json",
122
+ "spec/parsing/fixtures/pass.codepoints_from_unicode_org.json",
123
+ "spec/parsing/fixtures/pass.contacts.json",
124
+ "spec/parsing/fixtures/pass.db100.xml.json",
125
+ "spec/parsing/fixtures/pass.db1000.xml.json",
126
+ "spec/parsing/fixtures/pass.dc_simple_with_comments.json",
127
+ "spec/parsing/fixtures/pass.deep_arrays.json",
128
+ "spec/parsing/fixtures/pass.difficult_json_c_test_case.json",
129
+ "spec/parsing/fixtures/pass.difficult_json_c_test_case_with_comments.json",
130
+ "spec/parsing/fixtures/pass.doubles.json",
131
+ "spec/parsing/fixtures/pass.empty_array.json",
132
+ "spec/parsing/fixtures/pass.empty_string.json",
133
+ "spec/parsing/fixtures/pass.escaped_bulgarian.json",
134
+ "spec/parsing/fixtures/pass.escaped_foobar.json",
135
+ "spec/parsing/fixtures/pass.item.json",
136
+ "spec/parsing/fixtures/pass.json-org-sample1.json",
137
+ "spec/parsing/fixtures/pass.json-org-sample2.json",
138
+ "spec/parsing/fixtures/pass.json-org-sample3.json",
139
+ "spec/parsing/fixtures/pass.json-org-sample4-nows.json",
140
+ "spec/parsing/fixtures/pass.json-org-sample4.json",
141
+ "spec/parsing/fixtures/pass.json-org-sample5.json",
142
+ "spec/parsing/fixtures/pass.map-spain.xml.json",
143
+ "spec/parsing/fixtures/pass.ns-invoice100.xml.json",
144
+ "spec/parsing/fixtures/pass.ns-soap.xml.json",
145
+ "spec/parsing/fixtures/pass.numbers-fp-4k.json",
146
+ "spec/parsing/fixtures/pass.numbers-fp-64k.json",
147
+ "spec/parsing/fixtures/pass.numbers-int-4k.json",
148
+ "spec/parsing/fixtures/pass.numbers-int-64k.json",
149
+ "spec/parsing/fixtures/pass.twitter-search.json",
150
+ "spec/parsing/fixtures/pass.twitter-search2.json",
151
+ "spec/parsing/fixtures/pass.unicode.json",
152
+ "spec/parsing/fixtures/pass.yelp.json",
153
+ "spec/parsing/fixtures/pass1.json",
154
+ "spec/parsing/fixtures/pass2.json",
155
+ "spec/parsing/fixtures/pass3.json",
156
+ "spec/parsing/fixtures_spec.rb",
157
+ "spec/parsing/one_off_spec.rb",
158
+ "spec/rcov.opts",
159
+ "spec/spec.opts",
160
+ "spec/spec_helper.rb",
161
+ "yajl-ruby.gemspec"
162
+ ]
163
+ s.homepage = %q{http://github.com/brianmario/yajl-ruby}
164
+ s.rdoc_options = ["--charset=UTF-8"]
165
+ s.require_paths = ["lib", "ext"]
166
+ s.rubyforge_project = %q{yajl-ruby}
167
+ s.rubygems_version = %q{1.3.6}
168
+ s.summary = %q{Ruby C bindings to the excellent Yajl JSON stream-based parser library.}
169
+ s.test_files = [
170
+ "spec/encoding/encoding_spec.rb",
171
+ "spec/global/global_spec.rb",
172
+ "spec/http/http_delete_spec.rb",
173
+ "spec/http/http_error_spec.rb",
174
+ "spec/http/http_get_spec.rb",
175
+ "spec/http/http_post_spec.rb",
176
+ "spec/http/http_put_spec.rb",
177
+ "spec/json_gem_compatibility/compatibility_spec.rb",
178
+ "spec/parsing/active_support_spec.rb",
179
+ "spec/parsing/chunked_spec.rb",
180
+ "spec/parsing/fixtures_spec.rb",
181
+ "spec/parsing/one_off_spec.rb",
182
+ "spec/spec_helper.rb",
183
+ "examples/encoding/chunked_encoding.rb",
184
+ "examples/encoding/one_shot.rb",
185
+ "examples/encoding/to_an_io.rb",
186
+ "examples/http/twitter_search_api.rb",
187
+ "examples/http/twitter_stream_api.rb",
188
+ "examples/parsing/from_file.rb",
189
+ "examples/parsing/from_stdin.rb",
190
+ "examples/parsing/from_string.rb"
191
+ ]
192
+
193
+ if s.respond_to? :specification_version then
194
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
195
+ s.specification_version = 3
196
+
197
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
198
+ else
199
+ end
200
+ else
201
+ end
202
+ end
203
+
metadata ADDED
@@ -0,0 +1,232 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: benofsky-yajl-ruby
3
+ version: !ruby/object:Gem::Version
4
+ hash: 15
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 7
9
+ - 6
10
+ version: 0.7.6
11
+ platform: ruby
12
+ authors:
13
+ - Ben McRedmond
14
+ - Brian Lopez
15
+ - Lloyd Hilaiel
16
+ autorequire:
17
+ bindir: bin
18
+ cert_chain: []
19
+
20
+ date: 2010-06-21 00:00:00 +01:00
21
+ default_executable:
22
+ dependencies: []
23
+
24
+ description:
25
+ email: ben@benmcredmond.com
26
+ executables: []
27
+
28
+ extensions:
29
+ - ext/extconf.rb
30
+ extra_rdoc_files:
31
+ - README.rdoc
32
+ - ext/yajl.c
33
+ files:
34
+ - .gitignore
35
+ - CHANGELOG.md
36
+ - MIT-LICENSE
37
+ - README.rdoc
38
+ - Rakefile
39
+ - VERSION.yml
40
+ - benchmark/encode.rb
41
+ - benchmark/encode_json_and_marshal.rb
42
+ - benchmark/encode_json_and_yaml.rb
43
+ - benchmark/http.rb
44
+ - benchmark/parse.rb
45
+ - benchmark/parse_json_and_marshal.rb
46
+ - benchmark/parse_json_and_yaml.rb
47
+ - benchmark/parse_stream.rb
48
+ - benchmark/subjects/item.json
49
+ - benchmark/subjects/ohai.json
50
+ - benchmark/subjects/ohai.marshal_dump
51
+ - benchmark/subjects/ohai.yml
52
+ - benchmark/subjects/twitter_search.json
53
+ - benchmark/subjects/twitter_stream.json
54
+ - benchmark/subjects/unicode.json
55
+ - examples/encoding/chunked_encoding.rb
56
+ - examples/encoding/one_shot.rb
57
+ - examples/encoding/to_an_io.rb
58
+ - examples/http/twitter_search_api.rb
59
+ - examples/http/twitter_stream_api.rb
60
+ - examples/parsing/from_file.rb
61
+ - examples/parsing/from_stdin.rb
62
+ - examples/parsing/from_string.rb
63
+ - ext/api/yajl_common.h
64
+ - ext/api/yajl_gen.h
65
+ - ext/api/yajl_parse.h
66
+ - ext/extconf.rb
67
+ - ext/yajl.c
68
+ - ext/yajl_alloc.c
69
+ - ext/yajl_alloc.h
70
+ - ext/yajl_buf.c
71
+ - ext/yajl_buf.h
72
+ - ext/yajl_bytestack.h
73
+ - ext/yajl_encode.c
74
+ - ext/yajl_encode.h
75
+ - ext/yajl_ext.c
76
+ - ext/yajl_ext.h
77
+ - ext/yajl_gen.c
78
+ - ext/yajl_lex.c
79
+ - ext/yajl_lex.h
80
+ - ext/yajl_parser.c
81
+ - ext/yajl_parser.h
82
+ - lib/yajl.rb
83
+ - lib/yajl/bzip2.rb
84
+ - lib/yajl/bzip2/stream_reader.rb
85
+ - lib/yajl/bzip2/stream_writer.rb
86
+ - lib/yajl/deflate.rb
87
+ - lib/yajl/deflate/stream_reader.rb
88
+ - lib/yajl/deflate/stream_writer.rb
89
+ - lib/yajl/gzip.rb
90
+ - lib/yajl/gzip/stream_reader.rb
91
+ - lib/yajl/gzip/stream_writer.rb
92
+ - lib/yajl/http_stream.rb
93
+ - lib/yajl/json_gem.rb
94
+ - lib/yajl/json_gem/encoding.rb
95
+ - lib/yajl/json_gem/parsing.rb
96
+ - spec/encoding/encoding_spec.rb
97
+ - spec/global/global_spec.rb
98
+ - spec/http/fixtures/http.bzip2.dump
99
+ - spec/http/fixtures/http.chunked.dump
100
+ - spec/http/fixtures/http.deflate.dump
101
+ - spec/http/fixtures/http.error.dump
102
+ - spec/http/fixtures/http.gzip.dump
103
+ - spec/http/fixtures/http.html.dump
104
+ - spec/http/fixtures/http.raw.dump
105
+ - spec/http/http_delete_spec.rb
106
+ - spec/http/http_error_spec.rb
107
+ - spec/http/http_get_spec.rb
108
+ - spec/http/http_post_spec.rb
109
+ - spec/http/http_put_spec.rb
110
+ - spec/json_gem_compatibility/compatibility_spec.rb
111
+ - spec/parsing/active_support_spec.rb
112
+ - spec/parsing/chunked_spec.rb
113
+ - spec/parsing/fixtures/fail.15.json
114
+ - spec/parsing/fixtures/fail.16.json
115
+ - spec/parsing/fixtures/fail.17.json
116
+ - spec/parsing/fixtures/fail.26.json
117
+ - spec/parsing/fixtures/fail11.json
118
+ - spec/parsing/fixtures/fail12.json
119
+ - spec/parsing/fixtures/fail13.json
120
+ - spec/parsing/fixtures/fail14.json
121
+ - spec/parsing/fixtures/fail19.json
122
+ - spec/parsing/fixtures/fail20.json
123
+ - spec/parsing/fixtures/fail21.json
124
+ - spec/parsing/fixtures/fail22.json
125
+ - spec/parsing/fixtures/fail23.json
126
+ - spec/parsing/fixtures/fail24.json
127
+ - spec/parsing/fixtures/fail25.json
128
+ - spec/parsing/fixtures/fail27.json
129
+ - spec/parsing/fixtures/fail28.json
130
+ - spec/parsing/fixtures/fail3.json
131
+ - spec/parsing/fixtures/fail4.json
132
+ - spec/parsing/fixtures/fail5.json
133
+ - spec/parsing/fixtures/fail6.json
134
+ - spec/parsing/fixtures/fail9.json
135
+ - spec/parsing/fixtures/pass.array.json
136
+ - spec/parsing/fixtures/pass.codepoints_from_unicode_org.json
137
+ - spec/parsing/fixtures/pass.contacts.json
138
+ - spec/parsing/fixtures/pass.db100.xml.json
139
+ - spec/parsing/fixtures/pass.db1000.xml.json
140
+ - spec/parsing/fixtures/pass.dc_simple_with_comments.json
141
+ - spec/parsing/fixtures/pass.deep_arrays.json
142
+ - spec/parsing/fixtures/pass.difficult_json_c_test_case.json
143
+ - spec/parsing/fixtures/pass.difficult_json_c_test_case_with_comments.json
144
+ - spec/parsing/fixtures/pass.doubles.json
145
+ - spec/parsing/fixtures/pass.empty_array.json
146
+ - spec/parsing/fixtures/pass.empty_string.json
147
+ - spec/parsing/fixtures/pass.escaped_bulgarian.json
148
+ - spec/parsing/fixtures/pass.escaped_foobar.json
149
+ - spec/parsing/fixtures/pass.item.json
150
+ - spec/parsing/fixtures/pass.json-org-sample1.json
151
+ - spec/parsing/fixtures/pass.json-org-sample2.json
152
+ - spec/parsing/fixtures/pass.json-org-sample3.json
153
+ - spec/parsing/fixtures/pass.json-org-sample4-nows.json
154
+ - spec/parsing/fixtures/pass.json-org-sample4.json
155
+ - spec/parsing/fixtures/pass.json-org-sample5.json
156
+ - spec/parsing/fixtures/pass.map-spain.xml.json
157
+ - spec/parsing/fixtures/pass.ns-invoice100.xml.json
158
+ - spec/parsing/fixtures/pass.ns-soap.xml.json
159
+ - spec/parsing/fixtures/pass.numbers-fp-4k.json
160
+ - spec/parsing/fixtures/pass.numbers-fp-64k.json
161
+ - spec/parsing/fixtures/pass.numbers-int-4k.json
162
+ - spec/parsing/fixtures/pass.numbers-int-64k.json
163
+ - spec/parsing/fixtures/pass.twitter-search.json
164
+ - spec/parsing/fixtures/pass.twitter-search2.json
165
+ - spec/parsing/fixtures/pass.unicode.json
166
+ - spec/parsing/fixtures/pass.yelp.json
167
+ - spec/parsing/fixtures/pass1.json
168
+ - spec/parsing/fixtures/pass2.json
169
+ - spec/parsing/fixtures/pass3.json
170
+ - spec/parsing/fixtures_spec.rb
171
+ - spec/parsing/one_off_spec.rb
172
+ - spec/rcov.opts
173
+ - spec/spec.opts
174
+ - spec/spec_helper.rb
175
+ - yajl-ruby.gemspec
176
+ has_rdoc: true
177
+ homepage: http://github.com/benofsky/yajl-ruby
178
+ licenses: []
179
+
180
+ post_install_message:
181
+ rdoc_options:
182
+ - --charset=UTF-8
183
+ require_paths:
184
+ - lib
185
+ - ext
186
+ required_ruby_version: !ruby/object:Gem::Requirement
187
+ none: false
188
+ requirements:
189
+ - - ">="
190
+ - !ruby/object:Gem::Version
191
+ hash: 3
192
+ segments:
193
+ - 0
194
+ version: "0"
195
+ required_rubygems_version: !ruby/object:Gem::Requirement
196
+ none: false
197
+ requirements:
198
+ - - ">="
199
+ - !ruby/object:Gem::Version
200
+ hash: 3
201
+ segments:
202
+ - 0
203
+ version: "0"
204
+ requirements: []
205
+
206
+ rubyforge_project: yajl-ruby
207
+ rubygems_version: 1.3.7
208
+ signing_key:
209
+ specification_version: 3
210
+ summary: Ruby C bindings to the excellent Yajl JSON stream-based parser library.
211
+ test_files:
212
+ - spec/encoding/encoding_spec.rb
213
+ - spec/global/global_spec.rb
214
+ - spec/http/http_delete_spec.rb
215
+ - spec/http/http_error_spec.rb
216
+ - spec/http/http_get_spec.rb
217
+ - spec/http/http_post_spec.rb
218
+ - spec/http/http_put_spec.rb
219
+ - spec/json_gem_compatibility/compatibility_spec.rb
220
+ - spec/parsing/active_support_spec.rb
221
+ - spec/parsing/chunked_spec.rb
222
+ - spec/parsing/fixtures_spec.rb
223
+ - spec/parsing/one_off_spec.rb
224
+ - spec/spec_helper.rb
225
+ - examples/encoding/chunked_encoding.rb
226
+ - examples/encoding/one_shot.rb
227
+ - examples/encoding/to_an_io.rb
228
+ - examples/http/twitter_search_api.rb
229
+ - examples/http/twitter_stream_api.rb
230
+ - examples/parsing/from_file.rb
231
+ - examples/parsing/from_stdin.rb
232
+ - examples/parsing/from_string.rb