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 2, 2024
1 parent 794b856 commit d0212a5
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 d0212a5

Please sign in to comment.