File tree 3 files changed +8
-1
lines changed
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
# rubocop:todo all
2
2
source 'https://rubygems.org'
3
3
4
+ # See https://stackoverflow.com/questions/79360526
5
+ gem 'concurrent-ruby', '< 1.3.5'
6
+
4
7
gem 'actionpack', '~> 6.1'
5
8
gem 'activemodel', '~> 6.1'
6
9
Original file line number Diff line number Diff line change 2
2
# rubocop:todo all
3
3
4
4
module Mongoid
5
- VERSION = "9.0.5 "
5
+ VERSION = "9.0.6 "
6
6
end
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ def insert_rails_gem_version(cmd)
26
26
skip 'Set APP_TESTS=1 in environment to run application tests'
27
27
end
28
28
29
+ if SpecConfig . instance . rails_version < '7.1'
30
+ skip 'App tests require Rails > 7.0 (see https://stackoverflow.com/questions/79360526)'
31
+ end
32
+
29
33
require 'fileutils'
30
34
require 'mrss/child_process_helper'
31
35
require 'open-uri'
You can’t perform that action at this time.
0 commit comments