forked from typhoeus/typhoeus
-
Notifications
You must be signed in to change notification settings - Fork 3
/
typhoeus.gemspec
123 lines (118 loc) · 4.22 KB
/
typhoeus.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{typhoeus}
s.version = "0.2.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Paul Dix"]
s.date = %q{2010-11-11}
s.description = %q{Like a modern code version of the mythical beast with 100 serpent heads, Typhoeus runs HTTP requests in parallel while cleanly encapsulating handling logic.}
s.email = %q{[email protected]}
s.extensions = ["ext/typhoeus/extconf.rb"]
s.extra_rdoc_files = [
"README.textile"
]
s.files = [
".gitignore",
"CHANGELOG.markdown",
"Gemfile",
"Gemfile.lock",
"README.textile",
"Rakefile",
"VERSION",
"benchmarks/profile.rb",
"benchmarks/vs_nethttp.rb",
"examples/twitter.rb",
"ext/typhoeus/.gitignore",
"ext/typhoeus/extconf.rb",
"ext/typhoeus/native.c",
"ext/typhoeus/native.h",
"ext/typhoeus/typhoeus_easy.c",
"ext/typhoeus/typhoeus_easy.h",
"ext/typhoeus/typhoeus_multi.c",
"ext/typhoeus/typhoeus_multi.h",
"lib/typhoeus.rb",
"lib/typhoeus/.gitignore",
"lib/typhoeus/easy.rb",
"lib/typhoeus/filter.rb",
"lib/typhoeus/hydra.rb",
"lib/typhoeus/hydra/callbacks.rb",
"lib/typhoeus/hydra/connect_options.rb",
"lib/typhoeus/hydra/stubbing.rb",
"lib/typhoeus/hydra_mock.rb",
"lib/typhoeus/multi.rb",
"lib/typhoeus/normalized_header_hash.rb",
"lib/typhoeus/remote.rb",
"lib/typhoeus/remote_method.rb",
"lib/typhoeus/remote_proxy_object.rb",
"lib/typhoeus/request.rb",
"lib/typhoeus/response.rb",
"lib/typhoeus/service.rb",
"lib/typhoeus/utils.rb",
"profilers/valgrind.rb",
"spec/fixtures/result_set.xml",
"spec/servers/app.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/typhoeus/easy_spec.rb",
"spec/typhoeus/filter_spec.rb",
"spec/typhoeus/hydra_mock_spec.rb",
"spec/typhoeus/hydra_spec.rb",
"spec/typhoeus/multi_spec.rb",
"spec/typhoeus/normalized_header_hash_spec.rb",
"spec/typhoeus/remote_method_spec.rb",
"spec/typhoeus/remote_proxy_object_spec.rb",
"spec/typhoeus/remote_spec.rb",
"spec/typhoeus/request_spec.rb",
"spec/typhoeus/response_spec.rb",
"spec/typhoeus/utils_spec.rb",
"typhoeus.gemspec"
]
s.homepage = %q{http://github.com/pauldix/typhoeus}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{A library for interacting with web services (and building SOAs) at blinding speed.}
s.test_files = [
"spec/servers/app.rb",
"spec/spec_helper.rb",
"spec/typhoeus/easy_spec.rb",
"spec/typhoeus/filter_spec.rb",
"spec/typhoeus/hydra_mock_spec.rb",
"spec/typhoeus/hydra_spec.rb",
"spec/typhoeus/multi_spec.rb",
"spec/typhoeus/normalized_header_hash_spec.rb",
"spec/typhoeus/remote_method_spec.rb",
"spec/typhoeus/remote_proxy_object_spec.rb",
"spec/typhoeus/remote_spec.rb",
"spec/typhoeus/request_spec.rb",
"spec/typhoeus/response_spec.rb",
"spec/typhoeus/utils_spec.rb",
"examples/twitter.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
s.add_development_dependency(%q<diff-lcs>, [">= 0"])
s.add_development_dependency(%q<sinatra>, [">= 0"])
s.add_development_dependency(%q<json>, [">= 0"])
else
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<diff-lcs>, [">= 0"])
s.add_dependency(%q<sinatra>, [">= 0"])
s.add_dependency(%q<json>, [">= 0"])
end
else
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
s.add_dependency(%q<diff-lcs>, [">= 0"])
s.add_dependency(%q<sinatra>, [">= 0"])
s.add_dependency(%q<json>, [">= 0"])
end
end