forked from duke-automation/net-ssh-telnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
net-ssh-telnet.gemspec
22 lines (19 loc) · 1014 Bytes
/
net-ssh-telnet.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'net/ssh/telnet/version'
Gem::Specification.new do |spec|
spec.name = "net-ssh-telnet"
spec.version = Net::SSH::Telnet::VERSION
spec.authors = ["Sean Dilda"]
spec.email = ["[email protected]"]
spec.description = %q{A ruby module to provide a simple send/expect interface over SSH with an API almost identical to Net::Telnet. Ideally it should be a drop in replacement. Please see Net::Telnet for main documentation (included with ruby stdlib).}
spec.summary = %q{Provides Net::Telnet API for SSH connections}
spec.homepage = "https://github.com/duke-automation/net-ssh-telnet"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.require_paths = ["lib"]
spec.extra_rdoc_files = ['README.md', 'History.md']
spec.add_runtime_dependency 'net-ssh', '>= 2.0.1'
spec.add_development_dependency 'rake'
end