-
-
Notifications
You must be signed in to change notification settings - Fork 897
/
Gemfile
40 lines (32 loc) · 959 Bytes
/
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
39
40
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
group :development do
# bootstrapping
gem "bundler", "~> 2.3"
gem "rake", "13.2.1"
# building extensions
gem "rake-compiler", "1.2.8"
gem "rake-compiler-dock", "1.5.2"
# parser generator
gem "rexical", "1.0.8"
# tests
gem "minitest", "5.25.1"
gem "minitest-parallel_fork", "2.0.0"
gem "ruby_memcheck", "3.0.0"
gem "rubyzip", "~> 2.3.2"
gem "simplecov", "= 0.21.2"
# rubocop
gem "standard", "1.39.2", require: false
gem "rubocop", "1.64.1", require: false
gem "rubocop-minitest", "0.36.0", require: false
gem "rubocop-packaging", "0.5.2", require: false
gem "rubocop-performance", "1.22.1", require: false
gem "rubocop-rake", "0.6.0", require: false
end
# If Psych doesn't build, you can disable this group locally by running
# `bundle config set --local without rdoc`
# Then re-run `bundle install`.
group :rdoc do
gem "rdoc", "6.7.0"
end