forked from IshikawaUta/netmap-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetmap-scanner.gemspec
More file actions
26 lines (21 loc) · 1.07 KB
/
netmap-scanner.gemspec
File metadata and controls
26 lines (21 loc) · 1.07 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
require_relative "lib/netmap/version"
Gem::Specification.new do |spec|
spec.name = "netmap-scanner"
spec.version = NetMap::VERSION
spec.authors = ["IshikawaUta"]
spec.email = ["komikers09@gmail.com"]
spec.summary = "High-performance Network Scanner with Scripting Engine"
spec.description = "NetMap is a powerful network scanner featuring parallel host discovery, OS detection, service fingerprinting, and a custom Ruby scripting engine."
spec.homepage = "https://github.com/IshikawaUta"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/IshikawaUta/netmap-scanner"
spec.files = Dir["lib/**/*.rb", "bin/*", "scripts/*.rb", "assets/*.png", "README.md", "LICENSE"]
spec.bindir = "bin"
spec.executables = ["netmap"]
spec.require_paths = ["lib"]
spec.add_dependency "colorize", "~> 1.1"
spec.add_dependency "async", "~> 2.38"
spec.add_dependency "async-io", "~> 1.43"
end