-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetsnmp.gemspec
More file actions
27 lines (23 loc) · 914 Bytes
/
netsnmp.gemspec
File metadata and controls
27 lines (23 loc) · 914 Bytes
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
# frozen_string_literal: true
require File.expand_path("lib/netsnmp/version", __dir__)
Gem::Specification.new do |gem|
gem.name = "netsnmp"
gem.summary = "SNMP Client library"
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.requirements = ["net-snmp"]
gem.version = NETSNMP::VERSION
gem.license = "Apache-2.0"
gem.authors = ["Tiago Cardoso"]
gem.email = "cardoso_tiago@hotmail.com"
gem.homepage = ""
gem.platform = Gem::Platform::RUBY
gem.metadata["allowed_push_host"] = "https://rubygems.org/"
# Manifest
gem.files = Dir["LICENSE.txt", "README.md", "AUTHORS", "lib/**/*.rb", "sig/**/*.rbs"]
gem.require_paths = ["lib"]
gem.add_runtime_dependency "parslet"
gem.metadata["rubygems_mfa_required"] = "true"
end