forked from hallidave/ruby-snmp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
snmp.gemspec
29 lines (26 loc) · 890 Bytes
/
snmp.gemspec
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
29
$:.unshift File.expand_path("../lib", __FILE__)
require 'rake'
require 'snmp/version'
PKG_FILES = FileList[
'Rakefile',
'README.rdoc',
'lib/**/*.rb',
'test/**/test*.rb',
'test/**/*.yaml',
'examples/*.rb',
'data/**/*.yaml']
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.summary = "A Ruby implementation of SNMP (the Simple Network Management Protocol)."
s.name = 'snmp'
s.version = SNMP::VERSION
s.files = PKG_FILES.to_a
s.extra_rdoc_files = ['README.rdoc']
s.rdoc_options << '--main' << 'README.rdoc' <<
'--title' << 'SNMP Library for Ruby'
s.description = "A Ruby implementation of SNMP (the Simple Network Management Protocol)."
s.author = 'Dave Halliday'
s.email = '[email protected]'
s.rubyforge_project = 'snmplib'
s.homepage = 'http://snmplib.rubyforge.org'
end