-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
38 lines (31 loc) · 1.15 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
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
group :runtime, :cli do
gem 'activesupport', '~> 7.1', '>= 7.1.3.2' # for human-reabdle formater helper
gem 'docopt', '~> 0.6' # for argument parsing
gem 'pastel', '~> 0.8' # for colorized ouput
gem 'sxdg', '~> 1.0' # for XDG path handling
gem 'tty-logger', '~> 0.6' # for CLI event logging
gem 'tty-prompt', '~> 0.23' # for input handling
end
group :development, :install do
gem 'bundler', '~> 2.5'
end
group :development, :test do
# gem 'minitest', '~> 5.22'
# gem 'rake', '~> 13.1'
end
group :development, :lint do
gem 'rubocop', '~> 1.64'
gem 'solargraph', '~> 0.50'
end
group :development, :docs do
# Commonmarker 1.0 support https://github.com/lsegal/yard/issues/1528
gem 'commonmarker', '~> 1.1' # for markdown support in YARD
gem 'webrick', '~> 1.8' # web server for YARD
# gem 'yard', ['>= 0.9.27', '< 0.10'] # lib documentation
# 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