forked from jaytho/ruby-cisco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcisco.gemspec
21 lines (21 loc) · 831 Bytes
/
cisco.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
s.name = "cisco"
s.version = "0.0.1"
s.date = "2009-01-13"
s.authors = ["Jake Douglas"]
s.email = "[email protected]"
s.rubyforge_project = "cisco"
s.has_rdoc = false
s.summary = "Library for accessing Cisco devices via Telnet and SSH"
s.homepage = "http://www.github.com/yakischloba/ruby-cisco"
s.description = "This tool aims to provide transport-flexible functionality, for easy communication
with Cisco devices. It currently allows you to execute commands on a device and get
back the output of those commands."
s.files = ["README",
"lib/cisco.rb",
"lib/cisco/common.rb",
"lib/cisco/telnet.rb",
"lib/cisco/base.rb",
"lib/cisco/ssh.rb"]
s.add_dependency('net-ssh')
end