-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
41 lines (29 loc) · 1.09 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
source 'https://rubygems.org'
RONIN_URI = 'https://github.com/ronin-rb'
gemspec
platform :jruby do
gem 'jruby-openssl', '~> 0.7'
end
# gem 'combinatorics', '~> 0.4', github: 'postmodern/combinatorics'
# gem 'command_kit', '~> 0.4', github: 'postmodern/command_kit.rb',
# branch: '0.4.0'
# Ronin dependencies
# gem 'ronin-support', '~> 1.0', github: "ronin-rb/ronin-support",
# branch: 'main'
# gem 'ronin-core', '~> 0.2', 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 'redcarpet', platform: :mri
gem 'kramdown-man', '~> 1.0'
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 'command_kit-completion', '~> 0.2', require: false
end