-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnokizaru.gemspec
More file actions
53 lines (47 loc) · 1.66 KB
/
nokizaru.gemspec
File metadata and controls
53 lines (47 loc) · 1.66 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true
require_relative 'lib/nokizaru/version'
Gem::Specification.new do |spec|
spec.name = 'nokizaru'
spec.version = Nokizaru::VERSION
spec.authors = ['hakkuri', 'Nokizaru contributors']
spec.homepage = 'https://github.com/hakkuri01/nokizaru'
spec.summary = 'Nokizaru - Recon Refined'
spec.description = 'Fast, modular web recon CLI for bug bounty/pentest workflows the Ruby way.'
spec.license = 'MIT'
spec.metadata = {
'homepage_uri' => spec.homepage,
'source_code_uri' => spec.homepage,
'bug_tracker_uri' => "#{spec.homepage}/issues",
'rubygems_mfa_required' => 'true'
}
spec.required_ruby_version = '>= 4.0', '< 5.0'
spec.files = Dir[
'bin/*',
'lib/**/*',
'conf/**/*',
'data/**/*',
'wordlists/**/*',
'man/*',
'README.md',
'LICENSE'
]
spec.bindir = 'bin'
spec.executables = ['nokizaru']
spec.require_paths = ['lib']
spec.add_dependency 'activesupport', '~> 7.2', '>= 7.2.3.1'
spec.add_dependency 'async', '~> 2.10'
spec.add_dependency 'async-io', '~> 1.35'
spec.add_dependency 'concurrent-ruby', '~> 1.3'
spec.add_dependency 'dnsruby', '~> 1.72'
spec.add_dependency 'httpx', '~> 1.3'
spec.add_dependency 'json', '>= 2.19.2', '< 3.0'
spec.add_dependency 'nokogiri', '~> 1.16'
spec.add_dependency 'pstore'
spec.add_dependency 'public_suffix', '~> 5.0'
spec.add_dependency 'thor', '~> 1.3'
spec.add_dependency 'whois', '~> 5.0'
# Persistent workspaces + diffing built on the Ronin Database
spec.add_dependency 'ronin-db', '~> 0.2'
spec.add_dependency 'ronin-support', '~> 1.0'
spec.add_dependency 'sqlite3', '~> 1.6'
end