-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
31 lines (23 loc) · 908 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
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
plugin "bundler-multilock", "1.3.1"
return unless Plugin.installed?("bundler-multilock")
Plugin.send(:load_plugin, "bundler-multilock")
lockfile active: RUBY_VERSION >= "2.7" do
# these gems are not compatible with Ruby 2.6/JRuby 9.3, but we don't need them to actually
# run tests
gem "debug", "~> 1.9", require: false, platform: :mri
gem "irb", "~> 1.6"
gem "nokogiri", "~> 1.15"
gem "rubocop-inst", "~> 1.0"
gem "rubocop-rake", "~> 0.6"
gem "rubocop-rspec", "~> 2.11"
end
lockfile "ruby-2.6", active: RUBY_VERSION < "2.7" do
gem "nokogiri", "~> 1.13.0"
end
gem "coderay", "~> 1.1.3", require: false, platform: :mri
gem "commonmarker", require: false, platform: :mri
gem "thin", "~> 1.8.1", require: false, platform: :mri
gem "yard", require: false, platform: :mri, github: "ccutrer/yard", branch: "integration"