-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (29 loc) · 1.05 KB
/
Copy pathGemfile
File metadata and controls
34 lines (29 loc) · 1.05 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
# frozen_string_literal: true
source "https://rubygems.org"
gem "activesupport", "~> 8.0", require: false
gem "concurrent-ruby", "~> 1.2", require: false
gem "json", "~> 2.0", require: false
gem "minitest", ">= 5.20"
gem "mutant-minitest", ">= 0.12"
gem "rake", ">= 13.1"
if RUBY_ENGINE == "jruby"
# rdoc 8 depends on rbs, whose native extension does not build on JRuby
gem "rdoc", ">= 7.0.3", "< 8"
else
gem "rdoc", ">= 7.0.3"
end
gem "rubocop", ">= 1.62.1"
gem "rubocop-minitest", ">= 0.35"
gem "rubocop-performance", ">= 1.20.2"
gem "rubocop-rake", ">= 0.6.0"
gem "simplecov", ">= 1"
gem "standard", ">= 1.35.1"
gem "steep", ">= 1.10", platforms: %i[ruby windows]
gem "yard", ">= 0.9.38"
gem "yardstick", ">= 0.9.9"
gem "fast_jsonparser", "~> 0.6", platforms: %i[ruby windows], require: false
gem "gson", ">= 0.6", platforms: [:jruby], require: false
gem "jrjackson", ">= 0.4.18", platforms: [:jruby], require: false
gem "oj", "~> 3.0", platforms: %i[ruby windows], require: false
gem "yajl-ruby", "~> 1.3", platforms: %i[ruby windows], require: false
gemspec