File: typhoeus.gemspec

package info (click to toggle)
ruby-typhoeus 1.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 656 kB
  • sloc: ruby: 4,489; makefile: 6
file content (31 lines) | stat: -rw-r--r-- 1,266 bytes parent folder | download
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
# 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_ruby_version = ">= 2.6"
  s.license = 'MIT'
  s.metadata = {
    'bug_tracker_uri'       => 'https://github.com/typhoeus/typhoeus/issues',
    'changelog_uri'         => "https://github.com/typhoeus/typhoeus/blob/v#{s.version}/CHANGELOG.md",
    'documentation_uri'     => "https://www.rubydoc.info/gems/typhoeus/#{s.version}",
    'rubygems_mfa_required' => 'true',
    'source_code_uri'       => "https://github.com/typhoeus/typhoeus/tree/v#{s.version}"
  }

  s.add_dependency('ethon', [">= 0.9.0"])

  s.files = Dir.glob("**/*")
  s.require_path = 'lib'
end