aceofsales/faraday_persistent_excon

View on GitHub
faraday_persistent_excon.gemspec

Summary

Maintainability
Test Coverage
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'faraday_persistent_excon/version'

Gem::Specification.new do |spec|
  spec.name          = "faraday_persistent_excon"
  spec.version       = FaradayPersistentExcon::VERSION
  spec.authors       = ["Ryan Schlesinger"]
  spec.email         = ["ryan@outstand.com"]

  spec.summary       = %q{Persistent connections with faraday and excon}
  spec.description   = %q{Adds configurable connection pools per host for persistent http connections}
  spec.homepage      = "https://github.com/outstand/faraday_persistent_excon"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "faraday", ">= 0.10.0"
  spec.add_dependency "excon"
  spec.add_dependency "connection_pool"
  spec.add_dependency "activesupport"
  spec.add_dependency "thread_safe"

  spec.add_development_dependency "bundler", "~> 2.1"
  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "rspec"
end