Sha256: dcb72137e759a49c414785ccaa0e94c91c1ca7c5cdb4d9cc757f9cf748bfc6fa

Contents?: true

Size: 1.58 KB

Versions: 2

Compression:

Stored size: 1.58 KB

Contents

# encoding: utf-8

$:.unshift File.expand_path('../lib', __FILE__)
require 'typhoeus/version'

Gem::Specification.new do |s|
  s.name         = "marnen-typhoeus"
  s.version      = Typhoeus::VERSION
  s.authors      = ["David Balatero", "Paul Dix", "Marnen Laibow-Koser"]
  s.email        = ["dbalatero@gmail.com", "marnen@marnen.org"]
  s.homepage     = "https://github.com/marnen/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. (This is Marnen Laibow-Koser's fork of the original Typhoeus gem, available at https://github.com/dbalatero/typhoeus.)}
  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"]
  s.add_development_dependency 'pry-nav', [">= 0"]
  s.add_development_dependency 'autotest', [">= 0"]
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
marnen-typhoeus-0.3.6 typhoeus.gemspec
marnen-typhoeus-0.3.5 typhoeus.gemspec