Skip to content

Commit

Permalink
Require zlib before use
Browse files Browse the repository at this point in the history
This commit fixes two missing cases.
  • Loading branch information
maximerety committed Sep 1, 2024
1 parent 0e27e4e commit ec6f64d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

require "zlib"
require "active_support/core_ext/file/atomic"

module ActiveRecord
Expand Down
1 change: 1 addition & 0 deletions activesupport/lib/active_support/cache/file_store.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

require "zlib"
require "active_support/core_ext/file/atomic"
require "active_support/core_ext/string/conversions"
require "uri/common"
Expand Down

0 comments on commit ec6f64d

Please sign in to comment.