forked from sparklemotion/nokogiri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
37 lines (29 loc) · 843 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
# 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.0"
gem "rake-compiler-dock", "= 1.2.2"
# documentation
gem "hoe-markdown", "= 1.4.0"
gem "rdoc", "= 6.4.0"
# parser generator
gem "rexical", "= 1.0.7"
# tests
gem "minitest", "= 5.16.3"
gem "minitest-reporters", "= 1.5.0"
gem "ruby_memcheck", "= 1.0.3" unless ::RUBY_PLATFORM == "java"
gem "simplecov", "= 0.21.2"
# rubocop
if Gem::Requirement.new("~> 3.0").satisfied_by?(Gem::Version.new(RUBY_VERSION))
gem "rubocop", "= 1.35.1"
gem "rubocop-minitest", "= 0.21.0"
gem "rubocop-performance", "= 1.14.3"
gem "rubocop-rake", "= 0.6.0"
gem "rubocop-shopify", "= 2.9.0"
end
end