forked from Acceis/unisec
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
43 lines (35 loc) · 1.03 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
42
43
# frozen_string_literal: true
source 'https://rubygems.org'
# Specify your gem's dependencies in .gemspec
gemspec
# Needed for the CLI only
group :runtime, :cli do
gem 'dry-cli', '~> 1.2' # for arg parsing
gem 'paint', '~> 2.3' # for colorized ouput
end
# Needed for the CLI & library
group :runtime, :all do
gem 'ctf-party', '~> 3.0' # string conversion
gem 'twitter_cldr', '~> 6.12' # ICU / CLDR
gem 'unicode-confusable', '~> 1.12' # confusable chars
end
# Needed to install dependencies
group :development, :install do
gem 'bundler', '~> 2.1'
end
# Needed to run tests
group :development, :test do
gem 'minitest', '~> 5.25'
gem 'minitest-skip', '~> 0.0' # skip dummy tests
gem 'rake', '~> 13.2'
end
# Needed for linting
group :development, :lint do
gem 'rubocop', '~> 1.68'
end
group :development, :docs do
gem 'commonmarker', '~> 0.23' # for markdown support in YARD
gem 'webrick', '~> 1.9' # for yard server
gem 'yard', ['>= 0.9.27', '< 0.10']
gem 'yard-coderay', '~> 0.1' # for syntax highlight support in YARD
end