-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
32 lines (24 loc) · 930 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
27
28
29
30
31
32
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
# Ronin dependencies
# gem 'ronin-support', '~> 1.0', github: "ronin-rb/ronin-support",
# branch: '1.0.0'
# gem 'ronin-core', '~> 0.1', github: "ronin-rb/ronin-core",
# branch: 'main'
group :development do
gem 'rake'
gem 'rubygems-tasks', '~> 0.2'
gem 'rspec', '~> 3.0'
gem 'simplecov', '~> 0.20'
gem 'kramdown', '~> 2.0'
gem 'kramdown-man', '~> 0.1'
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
end