forked from ytti/netcrawl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetcrawl.gemspec
More file actions
19 lines (18 loc) · 772 Bytes
/
Copy pathnetcrawl.gemspec
File metadata and controls
19 lines (18 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |s|
s.name = 'netcrawl'
s.version = '0.1.0'
s.licenses = %w( Apache-2.0 )
s.platform = Gem::Platform::RUBY
s.authors = [ 'Saku Ytti' ]
s.email = %w( saku@ytti.fi )
s.homepage = 'http://github.com/ytti/netcrawl'
s.summary = 'lldp/cdp crawler'
s.description = 'given snmp community and one node crawls through the network to produce list/dot file'
s.rubyforge_project = s.name
s.files = `git ls-files`.split("\n")
s.executables = %w( netcrawl )
s.require_path = 'lib'
s.add_runtime_dependency 'snmp', '~> 1.2'
s.add_runtime_dependency 'slop', '~> 3.5'
s.add_runtime_dependency 'asetus', '~> 0.2'
end