rails-brotli-cache 0.3.13 → 0.3.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b682e9036d04afd87ca6369b612d524f65cf698ad53f23f06828d7e74690cd3a
4
- data.tar.gz: 55a11863fc1e5027be392685beb2cdcb39ed12ea3b66f2761dc4ecfacea49eaa
3
+ metadata.gz: cceeb82eb8c194ea2b8acd9fbdcf5a55d53fd6dbdf0f4f9aaf20ae2577fcab2c
4
+ data.tar.gz: 6c2bcade2408e81a303091e782d01239c625c288f63def2a6c40618fedf2bc4d
5
5
  SHA512:
6
- metadata.gz: bfc5e4b2224c5525c91ec7061263dac04cb6f4d0b045000977cd9c1ca90bcf2e07579e08083c4fc3621760b4cc887645c4408d0695da6a98dc54a170a6200f0d
7
- data.tar.gz: 2fc5a1e3773b7d310e4b34b46f9209169dab055f02a8cbd7403ad8db467c399a517c7ca66d3a69e0feb89109a0596c8c1a9cd91f24ac533b05890921f6d7bfba
6
+ metadata.gz: 04bc2568e39f8f398f5cd71fd169570a07ec972d506baf33202738145e48009f6064da385b521671627e058c7fec1115db28b9dd806c0cc123ae0811af9dce5e
7
+ data.tar.gz: f62f95df44c1acb1ceb734299291a68323a7c093b15f7762651faf43a49f83d5e7d80054444d2d63ff38bb2758fc2909836b15b93b50f54c3e0638b2c5456ec1
@@ -130,7 +130,7 @@ module RailsBrotliCache
130
130
  return value if value.is_a?(Integer)
131
131
  serialized = Marshal.dump(value)
132
132
 
133
- if serialized.bytesize >= COMPRESS_THRESHOLD && !options.fetch(:compress) == false
133
+ if serialized.bytesize >= COMPRESS_THRESHOLD && !options.fetch(:compress, true) == false
134
134
  compressor = compressor_class(options, default: @compressor_class)
135
135
  compressed_payload = compressor.deflate(serialized)
136
136
  if compressed_payload.bytesize < serialized.bytesize
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsBrotliCache
4
- VERSION = "0.3.13"
4
+ VERSION = "0.3.14"
5
5
  end
@@ -38,6 +38,12 @@ describe RailsBrotliCache do
38
38
  expect(cache_store.read("forced-key")).to eq 2
39
39
  end
40
40
  end
41
+
42
+ it "stores value in the configured Rails.cache when options passed" do
43
+ big_enough_to_compress_value = SecureRandom.hex(2048)
44
+ cache_store.fetch("test-key", expires_in: 5.seconds) { big_enough_to_compress_value }
45
+ expect(cache_store.read("test-key")).to eq big_enough_to_compress_value
46
+ end
41
47
  end
42
48
 
43
49
  describe "#increment and #decrement" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-brotli-cache
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.13
4
+ version: 0.3.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - pawurb
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-29 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails