-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-proxy-headers.gemspec
More file actions
31 lines (26 loc) · 1.28 KB
/
ruby-proxy-headers.gemspec
File metadata and controls
31 lines (26 loc) · 1.28 KB
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
# frozen_string_literal: true
require_relative 'lib/ruby_proxy_headers/version'
Gem::Specification.new do |s|
s.name = 'ruby-proxy-headers'
s.version = RubyProxyHeaders::VERSION
s.summary = 'Custom proxy CONNECT headers for Ruby HTTP clients (ProxyMesh, etc.)'
s.description = <<~DESC
Extensions for Ruby HTTP stacks to send custom headers on HTTPS CONNECT to a proxy
and read headers from the proxy CONNECT response (e.g. X-ProxyMesh-IP).
DESC
s.authors = ['ProxyMesh']
s.email = 'support@proxymesh.com'
s.homepage = 'https://github.com/proxymesh/ruby-proxy-headers'
s.license = 'MIT'
s.required_ruby_version = '>= 3.1'
s.metadata['source_code_uri'] = 'https://github.com/proxymesh/ruby-proxy-headers'
s.files = Dir['lib/**/*', 'LICENSE', 'README.md', 'IMPLEMENTATION_PRIORITY.md', 'LIBRARY_RESEARCH.md', 'DEFERRED.md']
s.require_paths = ['lib']
s.add_development_dependency 'bundler', '>= 2.4'
s.add_development_dependency 'excon', '~> 1.4'
s.add_development_dependency 'faraday', '~> 2.14'
s.add_development_dependency 'faraday-net_http', '~> 3.4'
s.add_development_dependency 'httparty', '~> 0.24'
s.add_development_dependency 'mechanize', '~> 2.14'
s.add_development_dependency 'typhoeus', '~> 1.6'
end