forked from swisscom/ruby-netsnmp
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnetsnmp.gemspec
More file actions
34 lines (28 loc) · 1.26 KB
/
netsnmp.gemspec
File metadata and controls
34 lines (28 loc) · 1.26 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
34
# frozen_string_literal: true
require File.expand_path("lib/netsnmp/version", __dir__)
Gem::Specification.new do |gem|
gem.name = "netsnmp"
gem.version = NETSNMP::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ["Tiago Cardoso"]
gem.email = "cardoso_tiago@hotmail.com"
gem.description = <<-DESC
Wraps the net-snmp core usage into idiomatic ruby.
It is designed to support as many environments and concurrency frameworks as possible.
DESC
gem.summary = "SNMP Client library"
gem.homepage = "https://github.com/HoneyryderChuck/ruby-netsnmp"
gem.license = "Apache-2.0"
gem.metadata = {
"bug_tracker_uri" => "https://github.com/HoneyryderChuck/ruby-netsnmp/issues",
"changelog_uri" => "https://github.com/HoneyryderChuck/ruby-netsnmp/blob/master/CHANGELOG.md",
"documentation_uri" => "https://www.rubydoc.info/github/HoneyryderChuck/ruby-netsnmp",
"source_code_uri" => "https://github.com/HoneyryderChuck/ruby-netsnmp",
"homepage_uri" => "https://github.com/HoneyryderChuck/ruby-netsnmp",
"rubygems_mfa_required" => "true"
}
# Manifest
gem.files = Dir["LICENSE.txt", "README.md", "AUTHORS", "lib/**/*.rb", "sig/**/*.rbs"]
gem.require_paths = ["lib"]
gem.add_dependency "parslet"
end