-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxin.gemspec
More file actions
24 lines (19 loc) · 798 Bytes
/
proxin.gemspec
File metadata and controls
24 lines (19 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# encoding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'proxin/version'
Gem::Specification.new do |s|
s.name = "proxin"
s.version = Proxin::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Nikita Anistratenko"]
s.email = ["steverovsky@gmail.com"]
s.homepage = "https://github.com/steverovsky/proxin"
s.summary = "Combine proxies with actions for checking and profiling."
s.description = %q{Combine proxies with actions for checking and profiling. Checking health-attributes of proxies.}
s.license = 'MIT'
s.add_dependency "typhoeus", "~> 1.3"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_path = 'lib'
end