forked from igrigorik/em-http-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathem-http-request.gemspec
42 lines (41 loc) · 1.18 KB
/
em-http-request.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
spec = Gem::Specification.new do |s|
s.name = 'em-http-request'
s.version = '0.1.5'
s.date = '2009-03-20'
s.summary = 'EventMachine based HTTP Request interface'
s.description = s.summary
s.email = '[email protected]'
s.homepage = "http://github.com/igrigorik/em-http-request"
s.has_rdoc = true
s.authors = ["Ilya Grigorik"]
s.add_dependency('eventmachine', '>= 0.12.2')
s.extensions = ["ext/buffer/extconf.rb" , "ext/http11_client/extconf.rb"]
s.rubyforge_project = "em-http-request"
# ruby -rpp -e' pp `git ls-files`.split("\n") '
s.files = [
".autotest",
".gitignore",
"LICENSE",
"README.rdoc",
"Rakefile",
"em-http-request.gemspec",
"ext/buffer/em_buffer.c",
"ext/buffer/extconf.rb",
"ext/http11_client/ext_help.h",
"ext/http11_client/extconf.rb",
"ext/http11_client/http11_client.c",
"ext/http11_client/http11_parser.c",
"ext/http11_client/http11_parser.h",
"ext/http11_client/http11_parser.rl",
"lib/em-http.rb",
"lib/em-http/client.rb",
"lib/em-http/core_ext/hash.rb",
"lib/em-http/decoders.rb",
"lib/em-http/multi.rb",
"lib/em-http/request.rb",
"test/hash.rb",
"test/helper.rb",
"test/stallion.rb",
"test/test_multi.rb",
"test/test_request.rb"]
end