Sha256: c545253b8e658f8032670500b863551520d3c2638d90e0d8592973c232e0e037

Contents?: true

Size: 1.17 KB

Versions: 2

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.5"
  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

2 entries across 2 versions & 1 rubygems

Version Path
hotwired-0.0.4 hotwired.gemspec
hotwired-0.0.3 hotwired.gemspec