summaryrefslogtreecommitdiff
path: root/net-ssh-gateway.gemspec
blob: 8403c82c0fadb98ce71dc92e756f9dd3978eff8f (plain)
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'net/ssh/gateway/version'

Gem::Specification.new do |spec|
  spec.name          = "net-ssh-gateway"
  spec.version       = Net::Ssh::Gateway::VERSION
  spec.authors       = ["Jamis Buck", "Delano Mandelbaum"]
  spec.email         = ["net-ssh@solutious.com"]

  spec.cert_chain    = ["gem-public_cert.pem"]

  spec.summary       = %q{A simple library to assist in establishing tunneled Net::SSH connections}
  spec.description   = %q{A simple library to assist in establishing tunneled Net::SSH connections}
  spec.homepage      = "https://github.com/net-ssh/net-ssh-gateway"
  spec.license       = "MIT"

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

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.8.4"
  spec.add_development_dependency "mocha"

  spec.add_runtime_dependency "net-ssh", ">= 2.6.5"
end