We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 298caea commit 708df54Copy full SHA for 708df54
CHANGELOG.md
@@ -2,7 +2,7 @@
2
3
## Master (unreleased)
4
5
-* Add support for Active Support 7.1. [#537][] by [@tomascco][]
+* Allow Active Support 7.1. [#537][] by [@tomascco][]
6
7
## 1.6.0 [☰](https://github.com/activeadmin/arbre/compare/v1.5.0...v1.6.0)
8
spec/rails/rails_spec_helper.rb
@@ -2,8 +2,11 @@
require 'spec_helper'
Combustion.path = 'spec/rails/stub_app'
-Combustion.initialize! :action_controller,
- :action_view
+Combustion.initialize! :action_controller, :action_view do
+ if Rails.gem_version >= Gem::Version.new("7.1.0")
+ config.active_support.cache_format_version = 7.1
+ end
9
+end
10
11
require 'rspec/rails'
12
require 'capybara/rspec'
0 commit comments