-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
23 lines (18 loc) · 525 Bytes
/
Gemfile
File metadata and controls
23 lines (18 loc) · 525 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
source 'https://rubygems.org'
# Grift's gem dependencies are defined in grift.gemspec
gemspec
gem 'rake', '>= 12.0'
group :development, :test do
gem 'minitest', '~> 5.25'
gem 'minitest-reporters', '~> 1.7'
gem 'simplecov', '~> 0.22'
gem 'simplecov-cobertura', '~> 3.1'
end
group :development, :lint do
gem 'overcommit', '>= 0.64'
gem 'rubocop', '~> 1.82.1'
gem 'rubocop-minitest', '~> 0.39.1'
gem 'rubocop-packaging', '~> 0.6.0'
gem 'rubocop-performance', '~> 1.26.0'
end