arunthampi-evented_net 0.1.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.rdoc +37 -0
- data/Rakefile +47 -0
- data/ext/http11_client/ext_help.h +14 -0
- data/ext/http11_client/extconf.rb +6 -0
- data/ext/http11_client/http11_client.c +302 -0
- data/ext/http11_client/http11_parser.c +403 -0
- data/ext/http11_client/http11_parser.h +48 -0
- data/ext/http11_client/http11_parser.rl +173 -0
- data/ext/rev/extconf.rb +6 -0
- data/ext/rev/rev_buffer.c +631 -0
- data/lib/evented_net.rb +18 -0
- data/lib/http.rb +6 -0
- data/lib/http/connection.rb +367 -0
- data/lib/http/get.rb +27 -0
- data/lib/http/post.rb +41 -0
- metadata +84 -0
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: arunthampi-evented_net
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Arun Thampi
|
8
|
+
autorequire: evented_net
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-08-19 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: eventmachine
|
17
|
+
version_requirement:
|
18
|
+
version_requirements: !ruby/object:Gem::Requirement
|
19
|
+
requirements:
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.12.0
|
23
|
+
version:
|
24
|
+
description: Evented HTTP Library. Wraps Normal HTTP GET/POST calls to use evented calls if EventMachine is running, and synchronous calls if otherwise
|
25
|
+
email: arun.thampi@gmail.com
|
26
|
+
executables: []
|
27
|
+
|
28
|
+
extensions:
|
29
|
+
- ext/rev/extconf.rb
|
30
|
+
- ext/http11_client/extconf.rb
|
31
|
+
extra_rdoc_files:
|
32
|
+
- README.rdoc
|
33
|
+
files:
|
34
|
+
- README.rdoc
|
35
|
+
- Rakefile
|
36
|
+
- lib/evented_net.rb
|
37
|
+
- lib/http
|
38
|
+
- lib/http/connection.rb
|
39
|
+
- lib/http/get.rb
|
40
|
+
- lib/http/post.rb
|
41
|
+
- lib/http.rb
|
42
|
+
- lib/http11_client.bundle
|
43
|
+
- lib/rev_buffer.bundle
|
44
|
+
- ext/http11_client
|
45
|
+
- ext/http11_client/ext_help.h
|
46
|
+
- ext/http11_client/extconf.rb
|
47
|
+
- ext/http11_client/http11_client.c
|
48
|
+
- ext/http11_client/http11_parser.c
|
49
|
+
- ext/http11_client/http11_parser.h
|
50
|
+
- ext/http11_client/http11_parser.rl
|
51
|
+
- ext/rev
|
52
|
+
- ext/rev/extconf.rb
|
53
|
+
- ext/rev/Makefile
|
54
|
+
- ext/rev/rev_buffer.bundle
|
55
|
+
- ext/rev/rev_buffer.c
|
56
|
+
- ext/rev/rev_buffer.o
|
57
|
+
has_rdoc: true
|
58
|
+
homepage: http://github.com/arunthampi/evented_net
|
59
|
+
post_install_message:
|
60
|
+
rdoc_options: []
|
61
|
+
|
62
|
+
require_paths:
|
63
|
+
- lib
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: "0"
|
69
|
+
version:
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: "0"
|
75
|
+
version:
|
76
|
+
requirements: []
|
77
|
+
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 1.2.0
|
80
|
+
signing_key:
|
81
|
+
specification_version: 2
|
82
|
+
summary: Evented HTTP Library. Wraps Normal HTTP GET/POST calls to use evented calls if EventMachine is running, and synchronous calls if otherwise
|
83
|
+
test_files: []
|
84
|
+
|