forked from xing/typhoeus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typhoeus.gemspec
33 lines (30 loc) · 1.31 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
# encoding: utf-8
$:.unshift File.expand_path('../lib', __FILE__)
require 'typhoeus/version'
Gem::Specification.new do |s|
s.name = "typhoeus"
s.version = Typhoeus::VERSION
s.authors = ["David Balatero", "Paul Dix"]
s.email = "[email protected]"
s.homepage = "https://github.com/dbalatero/typhoeus"
s.summary = "Parallel HTTP library on top of libcurl multi."
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.extensions = ["ext/typhoeus/extconf.rb"]
s.files = (`git ls-files ext lib spec`.split("\n")) + [
'CHANGELOG.markdown',
'Gemfile',
'Gemfile.lock',
'LICENSE',
'Rakefile',
'typhoeus.gemspec'
]
s.platform = Gem::Platform::RUBY
s.require_path = 'lib'
s.rubyforge_project = '[none]'
s.add_runtime_dependency 'mime-types', ['>= 0']
s.add_development_dependency 'rspec', ["~> 2.6"]
s.add_development_dependency 'diff-lcs', [">= 0"]
s.add_development_dependency 'sinatra', [">= 0"]
s.add_development_dependency 'json', [">= 0"]
s.add_development_dependency 'rake', [">= 0"]
end