forked from sparklemotion/nokogiri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
38 lines (30 loc) · 799 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
# 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.2"
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.42.1"
gem "rubocop-minitest", "0.36.0"
gem "rubocop-packaging", "0.5.2"
gem "rubocop-rake", "0.6.0"
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.8.1"
end