File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed
Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,30 @@ if RUBY_VERSION >= "3.5"
2020 gem "cgi"
2121end
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
2432gem "rspec", "~> 3.0"
2533gem "rspec-retry"
34+
35+ # Coverage
2636gem "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
3048if ruby_version >= Gem::Version.new("3.4")
3149 gem "ostruct"
Original file line number Diff line number Diff 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
4949else
50+ gem "psych" , "~> 3.0.0"
5051 gem "rspec-rails" , "~> 4.0"
5152 gem "psych" , "~> 3.0.0"
5253
You can’t perform that action at this time.
0 commit comments