Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions gemfiles/rails-6.1.gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# rubocop:todo all
source 'https://rubygems.org'

# See https://stackoverflow.com/questions/79360526
gem 'concurrent-ruby', '< 1.3.5'

gem 'actionpack', '~> 6.1.0'
gem 'activemodel', '~> 6.1.0'

Expand Down
2 changes: 1 addition & 1 deletion lib/mongoid/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ module Mongoid
#
# Note that this file is automatically updated via `rake candidate:create`.
# Manual changes to this file will be overwritten by that rake task.
VERSION = '9.0.2'
VERSION = '9.0.6'
end
4 changes: 4 additions & 0 deletions spec/integration/app_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ def insert_rails_gem_version(cmd)
skip 'Set APP_TESTS=1 in environment to run application tests'
end

if SpecConfig.instance.rails_version < '7.1'
skip 'App tests require Rails > 7.0 (see https://stackoverflow.com/questions/79360526)'
end

require 'fileutils'
require 'mrss/child_process_helper'
require 'open-uri'
Expand Down