-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
34 lines (26 loc) · 771 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
# frozen_string_literal: true
source "https://rubygems.org"
gemspec
if RUBY_VERSION == "2.0.0"
gem "json", "2.4.1"
gem "kramdown", "1.16.2"
end
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("2.4.0")
gem "listen", "3.0.8"
end
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.1.0")
gem "rspec-benchmark", "~> 0.6"
end
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.5.0")
gem "warning", "~> 1.3"
end
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.7.0")
gem "coveralls_reborn", "~> 0.28.0"
gem "rubocop-performance", "~> 1.20"
gem "rubocop-rake", "~> 0.6"
gem "rubocop-rspec", "~> 2.26"
gem "simplecov", "~> 0.22.0"
end
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.4.0")
gem "logger", "~> 1.7"
end