ruby_http_parser 0.0.1
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.
- data/README.md +27 -0
- data/Rakefile +11 -0
- data/bench/thin.rb +57 -0
- data/ext/http-parser/LICENSE-MIT +19 -0
- data/ext/http-parser/Makefile +33 -0
- data/ext/http-parser/README.md +136 -0
- data/ext/http-parser/http_parser.c +1468 -0
- data/ext/http-parser/http_parser.h +141 -0
- data/ext/http-parser/test.c +1176 -0
- data/ext/ruby_http_parser/ext_help.h +18 -0
- data/ext/ruby_http_parser/extconf.rb +7 -0
- data/ext/ruby_http_parser/ruby_http_parser.c +275 -0
- data/lib/net/http/parser.rb +1 -0
- data/lib/ruby_http_parser.bundle +0 -0
- data/ruby_http_parser.gemspec +13 -0
- data/spec/request_parser_spec.rb +27 -0
- data/spec/spec_helper.rb +3 -0
- data/tmp/universal-darwin10.0/ruby_http_parser/1.8.7/Makefile +157 -0
- data/tmp/universal-darwin10.0/ruby_http_parser/1.8.7/ruby_http_parser.bundle +0 -0
- data/tmp/universal-darwin10.0/ruby_http_parser/1.8.7/ruby_http_parser.o +0 -0
- metadata +75 -0
|
Binary file
|
metadata
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ruby_http_parser
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Marc-Andre Cournoyer
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2010-03-07 00:00:00 -05:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies: []
|
|
15
|
+
|
|
16
|
+
description:
|
|
17
|
+
email: macournoyer@gmail.com
|
|
18
|
+
executables: []
|
|
19
|
+
|
|
20
|
+
extensions:
|
|
21
|
+
- ext/ruby_http_parser/extconf.rb
|
|
22
|
+
extra_rdoc_files: []
|
|
23
|
+
|
|
24
|
+
files:
|
|
25
|
+
- bench/thin.rb
|
|
26
|
+
- ext/http-parser/http_parser.c
|
|
27
|
+
- ext/http-parser/http_parser.h
|
|
28
|
+
- ext/http-parser/LICENSE-MIT
|
|
29
|
+
- ext/http-parser/Makefile
|
|
30
|
+
- ext/http-parser/README.md
|
|
31
|
+
- ext/http-parser/test.c
|
|
32
|
+
- ext/ruby_http_parser/ext_help.h
|
|
33
|
+
- ext/ruby_http_parser/extconf.rb
|
|
34
|
+
- ext/ruby_http_parser/ruby_http_parser.c
|
|
35
|
+
- lib/net/http/parser.rb
|
|
36
|
+
- lib/ruby_http_parser.bundle
|
|
37
|
+
- Rakefile
|
|
38
|
+
- README.md
|
|
39
|
+
- ruby_http_parser-0.0.1.gem
|
|
40
|
+
- ruby_http_parser.gemspec
|
|
41
|
+
- spec/request_parser_spec.rb
|
|
42
|
+
- spec/spec_helper.rb
|
|
43
|
+
- tmp/universal-darwin10.0/ruby_http_parser/1.8.7/Makefile
|
|
44
|
+
- tmp/universal-darwin10.0/ruby_http_parser/1.8.7/ruby_http_parser.bundle
|
|
45
|
+
- tmp/universal-darwin10.0/ruby_http_parser/1.8.7/ruby_http_parser.o
|
|
46
|
+
has_rdoc: true
|
|
47
|
+
homepage: http://github.com/macournoyer/ruby_http_parser
|
|
48
|
+
licenses: []
|
|
49
|
+
|
|
50
|
+
post_install_message:
|
|
51
|
+
rdoc_options: []
|
|
52
|
+
|
|
53
|
+
require_paths:
|
|
54
|
+
- lib
|
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: "0"
|
|
60
|
+
version:
|
|
61
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
|
+
requirements:
|
|
63
|
+
- - ">="
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: "0"
|
|
66
|
+
version:
|
|
67
|
+
requirements: []
|
|
68
|
+
|
|
69
|
+
rubyforge_project:
|
|
70
|
+
rubygems_version: 1.3.5
|
|
71
|
+
signing_key:
|
|
72
|
+
specification_version: 3
|
|
73
|
+
summary: Ruby bindings to http://github.com/ry/http-parser
|
|
74
|
+
test_files: []
|
|
75
|
+
|