File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 11# rubocop:todo all
22source 'https://rubygems.org'
33
4+ # See https://stackoverflow.com/questions/79360526
5+ gem 'concurrent-ruby', '< 1.3.5'
6+
47gem 'actionpack', '~> 6.1'
58gem 'activemodel', '~> 6.1'
69
Original file line number Diff line number Diff line change 22# rubocop:todo all
33
44module Mongoid
5- VERSION = "9.0.5 "
5+ VERSION = "9.0.6 "
66end
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ def insert_rails_gem_version(cmd)
2626 skip 'Set APP_TESTS=1 in environment to run application tests'
2727 end
2828
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+
2933 require 'fileutils'
3034 require 'mrss/child_process_helper'
3135 require 'open-uri'
You can’t perform that action at this time.
0 commit comments