forked from typhoeus/typhoeus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typhoeus.gemspec
24 lines (19 loc) · 943 Bytes
/
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
# encoding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'typhoeus/version'
Gem::Specification.new do |s|
s.name = "typhoeus"
s.version = Typhoeus::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["David Balatero", "Paul Dix", "Hans Hasselberg"]
s.email = ["hans.hasselberg@gmail.com"]
s.homepage = "https://github.com/typhoeus/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.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = '[none]'
s.add_dependency('ethon', ["~> 0.5.11"])
s.files = Dir.glob("lib/**/*") + %w(CHANGELOG.md Gemfile LICENSE README.md Rakefile)
s.require_path = 'lib'
end