forked from sparklemotion/nokogiri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
47 lines (37 loc) · 1.08 KB
/
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
41
42
43
44
45
46
47
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
group :development do
# bootstrapping
gem "bundler", "~> 2.3"
gem "rake", "= 13.0.6"
# building extensions
gem "rake-compiler", "1.2.5"
gem "rake-compiler-dock", "1.3.1"
# documentation
gem "hoe-markdown", "= 1.4.0"
# parser generator
gem "rexical", "= 1.0.7"
# tests
gem "minitest", "5.20.0"
gem "minitest-parallel_fork", "1.3.1"
gem "ruby_memcheck", "2.2.0"
gem "rubyzip", "~> 2.3.2"
gem "simplecov", "= 0.21.2"
# rubocop
if Gem::Requirement.new("~> 3.0").satisfied_by?(Gem::Version.new(RUBY_VERSION))
gem "rubocop", "1.57.1"
gem "rubocop-minitest", "0.32.2"
gem "rubocop-packaging", "0.5.2"
gem "rubocop-performance", "1.19.1"
gem "rubocop-rake", "= 0.6.0"
gem "rubocop-shopify", "2.14.0"
end
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.5.0"
end
gem "psych", "!= 5.1.1", "!= 5.1.0" # https://github.com/ruby/psych/issues/655