-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
35 lines (25 loc) · 971 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
33
34
35
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
gem 'jruby-openssl', '~> 0.7', platform: :jruby
# gem 'python-pickle', '~> 0.1', github: 'postmodern/python-pickle.rb',
# branch: 'main'
# Ronin dependencies
# gem 'ronin-support', '~> 1.1', github: "ronin-rb/ronin-support",
# 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