forked from swisscom/ruby-netsnmp
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (28 loc) · 630 Bytes
/
Gemfile
File metadata and controls
34 lines (28 loc) · 630 Bytes
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/"
ruby RUBY_VERSION
gemspec
gem "rake", "~> 12.3"
gem "rspec", "~> 3.5"
platform :mri, :truffleruby do
gem "xorcist", require: false
end
platform :mri do
if RUBY_VERSION >= "3.0.0"
gem "celluloid-io", "~> 0.17" if RUBY_VERSION >= "2.3.0"
gem "rbs"
gem "rubocop"
gem "rubocop-performance"
end
end
if RUBY_VERSION < "2.3"
gem "simplecov", "< 0.11.0"
elsif RUBY_VERSION < "2.4"
gem "docile", "< 1.4.0"
gem "simplecov", "< 0.19.0"
elsif RUBY_VERSION < "2.5"
gem "docile", "< 1.4.0"
gem "simplecov", "< 0.21.0"
else
gem "simplecov"
end