-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
53 lines (44 loc) · 1.53 KB
/
Gemfile
File metadata and controls
53 lines (44 loc) · 1.53 KB
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
44
45
46
47
48
49
50
51
52
53
# 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.3' # for arg parsing
gem 'paint', '~> 2.3' # for colorized ouput
end
# Needed for the CLI & library
group :runtime, :all do
gem 'ctf-party', '~> 5.0' # string conversion
gem 'twitter_cldr', '~> 6.13' # ICU / CLDR
gem 'unicode-confusable', '~> 1.13' # confusable chars
end
# Workaround waiting for upstream bug fixes
group :runtime, :fixes do
gem 'bigdecimal', '~> 4.0' # https://github.com/twitter/twitter-cldr-rb/pull/277
end
# Needed to install dependencies
group :development, :install do
gem 'bundler', '~> 4.0'
end
# Needed to run tests
group :development, :test do
gem 'minitest', '~> 6.0'
gem 'minitest-skip', '~> 1.0' # skip dummy tests
gem 'rake', '~> 13.3'
end
# Needed for linting
group :development, :lint do
gem 'rubocop', '~> 1.82'
end
group :development, :docs do
gem 'commonmarker', '~> 2.6', '>= 2.6.1' # for markdown support in YARD
gem 'irb' # https://github.com/lsegal/yard/issues/1636
gem 'logger' # https://github.com/lsegal/yard/issues/1636
gem 'ostruct' # https://github.com/lsegal/yard/issues/1636
gem 'webrick', '~> 1.9' # for yard server
# gem 'yard', ['>= 0.9.27', '< 0.10']
# https://github.com/lsegal/yard/issues/1528
gem 'yard', github: 'ParadoxV5/yard', ref: '9e869c940859570b07b81c5eadd6070e76f6291e', branch: 'commonmarker-1.0'
gem 'yard-coderay', '~> 0.1' # for syntax highlight support in YARD
end