-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathnet-snmp.gemspec
More file actions
33 lines (28 loc) · 1.18 KB
/
Copy pathnet-snmp.gemspec
File metadata and controls
33 lines (28 loc) · 1.18 KB
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
30
31
32
33
# -*- encoding: utf-8 -*-
lib = File.expand_path("../lib", __FILE__)
$:.unshift lib
require 'net/snmp/version'
Gem::Specification.new do |s|
s.name = "net-snmp"
s.version = Net::SNMP::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ron McClain"]
s.email = ["mixtli@github.com"]
s.homepage = "https://github.com/mixtli/net-snmp"
s.summary = %q{Object oriented wrapper around C net-snmp libraries}
s.description = %q{Uses ffi to create an object oriented wrapper around C net-snmp libraries}
s.rubyforge_project = "net-snmp"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# Documentation options
s.has_rdoc = true
s.extra_rdoc_files = %w{ README.rdoc }
s.rdoc_options = ["--main=README.rdoc", "--line-numbers", "--inline-source", "--title=#{s.name}-#{s.version} Documentation"]
s.add_dependency 'ffi-inliner'
s.add_dependency 'nice-ffi'
s.add_development_dependency "rspec"
s.add_development_dependency "eventmachine"
#s.add_dependency "nice-ffi"
end