-
Notifications
You must be signed in to change notification settings - Fork 326
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (32 loc) · 756 Bytes
/
Gemfile
File metadata and controls
45 lines (32 loc) · 756 Bytes
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
# frozen_string_literal: true
source "https://rubygems.org"
ruby RUBY_VERSION
gem "rake"
group :development do
gem "debug", platform: :mri
gem "nokogiri", require: false
end
group :test do
gem "addressable", "~> 2.8"
gem "logger"
gem "rubocop", "~> 1.85"
gem "rubocop-minitest", "~> 0.36"
gem "rubocop-performance", "~> 1.26"
gem "rubocop-rake", "~> 0.7.1"
gem "simplecov", require: false
gem "simplecov-lcov", require: false
gem "minitest-memory", platform: :mri
gem "minitest-mock"
gem "minitest-strict"
gem "mutant-minitest"
gem "yardstick"
end
group :sig do
gem "steep"
end
group :doc do
gem "kramdown"
gem "yard"
end
# Specify your gem's dependencies in http.gemspec
gemspec