forked from phokz/ruby-snmp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnmp.gemspec
More file actions
21 lines (18 loc) · 791 Bytes
/
snmp.gemspec
File metadata and controls
21 lines (18 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$:.unshift File.expand_path("../lib", __FILE__)
require 'snmp/version'
PKG_FILES = Dir.glob("{lib,test,examples,data}/**/*") + %w(Rakefile README.rdoc)
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 = 'hallidave@gmail.com'
s.rubyforge_project = 'snmplib'
s.homepage = 'http://snmplib.rubyforge.org'
end