Skip to content

Commit 93d71ee

Browse files
committed
Update Gemfile.dev
1 parent a3d87a6 commit 93d71ee

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

Gemfile.dev

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,30 @@ if RUBY_VERSION >= "3.5"
2020
gem "cgi"
2121
end
2222

23+
if RUBY_VERSION >= "3.4"
24+
gem "drb"
25+
gem "mutex_m"
26+
gem "benchmark"
27+
gem "base64"
28+
gem "ostruct"
29+
end
30+
2331
# For RSpec
2432
gem "rspec", "~> 3.0"
2533
gem "rspec-retry"
34+
35+
# Coverage
2636
gem "simplecov"
27-
gem "simplecov-cobertura", "~> 1.4"
28-
gem "rexml"
37+
38+
# Do not change it without checking that `CI=true COVERAGE=true bundle exec rake` passes
39+
# in all projects
40+
if RUBY_VERSION >= "2.5.0"
41+
gem "rexml", "3.4.1"
42+
gem "simplecov-cobertura", "~> 3.0"
43+
else
44+
gem "rexml", "3.2.5"
45+
gem "simplecov-cobertura", "~> 1.4.0"
46+
end
2947

3048
if ruby_version >= Gem::Version.new("3.4")
3149
gem "ostruct"

sentry-rails/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ elsif rails_version >= Gem::Version.new("6.1.0")
4747
gem "sqlite3", "~> 1.6.9", platform: :ruby
4848
end
4949
else
50+
gem "psych", "~> 3.0.0"
5051
gem "rspec-rails", "~> 4.0"
5152
gem "psych", "~> 3.0.0"
5253

0 commit comments

Comments
 (0)