em-http-request 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of em-http-request might be problematic. Click here for more details.
- data/README.rdoc +11 -0
- data/Rakefile +1 -0
- data/VERSION +1 -1
- metadata +4 -3
data/README.rdoc
CHANGED
@@ -9,6 +9,17 @@ EventMachine based HTTP Request interface. Supports streaming response processin
|
|
9
9
|
Screencast / Demo of using EM-HTTP-Request:
|
10
10
|
- http://everburning.com/news/eventmachine-screencast-em-http-request/
|
11
11
|
|
12
|
+
== Getting started
|
13
|
+
|
14
|
+
# install & configure gemcutter repos
|
15
|
+
gem update --system
|
16
|
+
gem install gemcutter
|
17
|
+
gem tumble
|
18
|
+
|
19
|
+
gem install em-http-request
|
20
|
+
|
21
|
+
irb:0> require 'em-http'
|
22
|
+
|
12
23
|
== Simple client example
|
13
24
|
|
14
25
|
EventMachine.run {
|
data/Rakefile
CHANGED
@@ -92,6 +92,7 @@ begin
|
|
92
92
|
gemspec.email = "ilya@igvita.com"
|
93
93
|
gemspec.homepage = "http://github.com/igrigorik/em-http-request"
|
94
94
|
gemspec.authors = ["Ilya Grigorik"]
|
95
|
+
gemspec.extensions = ["ext/buffer/extconf.rb" , "ext/http11_client/extconf.rb"]
|
95
96
|
gemspec.add_dependency('eventmachine', '>= 0.12.9')
|
96
97
|
gemspec.add_dependency('addressable', '>= 2.0.0')
|
97
98
|
gemspec.rubyforge_project = "em-http-request"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: em-http-request
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ilya Grigorik
|
@@ -36,8 +36,9 @@ description: EventMachine based, async HTTP Request interface
|
|
36
36
|
email: ilya@igvita.com
|
37
37
|
executables: []
|
38
38
|
|
39
|
-
extensions:
|
40
|
-
|
39
|
+
extensions:
|
40
|
+
- ext/buffer/extconf.rb
|
41
|
+
- ext/http11_client/extconf.rb
|
41
42
|
extra_rdoc_files:
|
42
43
|
- LICENSE
|
43
44
|
- README.rdoc
|