-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
34 lines (26 loc) · 935 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
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
platform :jruby do
gem 'jruby-openssl', '~> 0.7'
end
# gem 'spidr', '~> 0.7', github: 'postmodern/spidr'
# gem 'ronin-support', '~> 1.0', github: "ronin-rb/ronin-support",
# branch: 'main'
group :development do
gem 'rake'
gem 'rubygems-tasks', '~> 0.2'
gem 'rspec', '~> 3.0'
gem 'webmock', '~> 2.0'
gem 'sinatra', '~> 1.0'
gem 'simplecov', '~> 0.20'
gem 'kramdown', '~> 2.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
end