-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Rails 7.1 compatibility by ensuring active_support is required be…
…fore railtie Not sure if this is us, strictly speaking but we seem to need to require active_support before the railties or the issue at rails/rails#49495 (comment) occurs Since we do reference loggers here, seems appropriate for us to require ourselves.
- Loading branch information
1 parent
f52da2e
commit 638c232
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#-- | ||
# Copyright (c) 2010-2012 Engine Yard, Inc. | ||
# Copyright (c) 2007-2009 Sun Microsystems, Inc. | ||
# This source code is available under the MIT license. | ||
# See the file LICENSE.txt for details. | ||
#++ | ||
|
||
module ActiveSupport | ||
end |