Sha256: 69230a84d228ba8fbe23d6d68b480dd5f1710e8a35ead4404a918f65d1da865a
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
# frozen_string_literal: true require_relative "lib/hotwired/version" Gem::Specification.new do |spec| spec.name = "hotwired" spec.version = Hotwired::VERSION spec.authors = ["WENWU.YAN"] spec.email = ["careline@foxmail.com"] spec.summary = "Device discovery via snmp polls" spec.description = "Threaded SNMP poll based network discovery. Devices are stored in SQL" spec.homepage = "https://github.com/ciscolive/hotwired-ruby" spec.licenses = "MIT" # spec.metadata["allowed_push_host"] = "https://rubygems.org" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/ciscolive/hotwired-ruby" spec.metadata["changelog_uri"] = "https://github.com/ciscolive/hotwired-ruby" spec.files = `git ls-files`.split("\n") spec.executables = %w( hotwired ) spec.require_paths = "lib" spec.required_ruby_version = ">= 2.6.0" # 项目依赖 spec.add_runtime_dependency "strada", ">= 0.0.3" spec.add_runtime_dependency "sequel", "~> 5.0" spec.add_runtime_dependency "slop", "~> 4.0" spec.add_runtime_dependency "snmp", "~> 1.3" spec.add_runtime_dependency "sqlite3", "~> 1.4" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hotwired-0.0.2 | hotwired.gemspec |