-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpersistent_httparty.gemspec
33 lines (29 loc) · 1.3 KB
/
persistent_httparty.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 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'persistent_httparty/version'
Gem::Specification.new do |gem|
gem.name = "persistent_httparty"
gem.version = PersistentHttparty::VERSION
gem.authors = ["Matt Campbell"]
gem.email = ["[email protected]"]
gem.description = %q{Persistent HTTP connections for HTTParty using the persistent_http gem. Keep the party alive!}
gem.summary = %q{Persistent HTTP connections for HTTParty}
gem.homepage = "https://github.com/soupmatt/persistent_httparty"
gem.files = `git ls-files -- lib/*`.split("\n")
gem.files += %w[README.md LICENSE CHANGELOG.md]
gem.test_files = `git ls-files -- {spec,features}/*`.split("\n")
gem.require_paths = ["lib"]
gem.required_ruby_version = '>= 2.1'
gem.add_dependency "httparty", "~> 0.10"
gem.add_dependency "persistent_http", "< 2"
if RUBY_VERSION <= "2.2"
gem.add_development_dependency "cucumber", "< 3.1"
else
gem.add_development_dependency "cucumber"
end
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec", "~> 3.8"
gem.add_development_dependency "rspec-its"
gem.add_development_dependency "webmock"
end