-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Gemfile
59 lines (42 loc) · 1.77 KB
/
Gemfile
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
54
55
56
57
58
59
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
platform :jruby do
gem 'jruby-openssl', '~> 0.7'
end
# gem 'wordlist', '~> 1.0', github: 'postmodern/wordlist',
# branch: 'main'
# Ronin dependencies
# gem 'ronin-support', '~> 1.1', github: 'ronin-rb/ronin-support',
# branch: 'main'
# gem 'ronin-core', '~> 0.2', github: 'ronin-rb/ronin-core',
# branch: 'main'
# gem 'ronin-repos', '~> 0.1', github: 'ronin-rb/ronin-repos',
# branch: 'main'
# gem 'ronin-db-activerecord', '~> 0.2', github: 'ronin-rb/ronin-db-activerecord',
# branch: 'main'
# gem 'ronin-db', '~> 0.2', github: 'ronin-rb/ronin-db',
# branch: 'main'
# gem 'ronin-nmap', '~> 0.1', github: 'ronin-rb/ronin-nmap',
# branch: 'main'
# gem 'ronin-web-spider', '~> 0.2', github: 'ronin-rb/ronin-web-spider',
# branch: 'main'
group :development do
gem 'rake'
gem 'rubygems-tasks', '~> 0.2'
gem 'rspec', '~> 3.0'
gem 'simplecov', '~> 0.20'
gem 'sinatra', '~> 3.0'
gem 'webmock', '~> 3.0'
gem 'kramdown', '~> 2.0'
gem 'kramdown-man', '~> 1.0'
gem 'redcarpet', platform: :mri
gem 'yard', '~> 0.9'
gem 'yard-spellcheck', require: false
gem 'dead_end', require: false
gem 'sord', require: false, platform: :mri
gem 'stackprof', require: false, platform: :mri
gem 'rubocop', require: false, platform: :mri
gem 'rubocop-ronin', require: false, platform: :mri
gem 'command_kit-completion', '~> 0.2', require: false
end