-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
26 lines (20 loc) · 906 Bytes
/
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
source 'https://rubygems.org'
gem 'ronin-web-server', '~> 0.1' #, github: 'ronin-rb/ronin-web-server',
# branch: 'main'
gem 'ronin-support', '~> 1.2', github: 'ronin-rb/ronin-support',
branch: '1.2.0'
gem 'ronin-payloads', '~> 0.3', github: 'ronin-rb/ronin-payloads',
branch: '0.3.0'
gem 'ronin-exploits', '~> 1.2', github: 'ronin-rb/ronin-exploits',
branch: '1.2.0'
group :development do
gem 'rake', require: false
gem 'rspec', '~> 3.0', require: false
gem 'webmock', '~> 3.0', require: false
gem 'simplecov', '~> 0.20'
gem 'redcarpet', platform: :mri
gem 'kramdown', '~> 2.0', require: false
gem 'yard', '~> 0.9', require: false
gem 'rubocop', require: false, platform: :mri
gem 'rubocop-ronin', require: false, platform: :mri
end