rack-redic 1.1.0 → 1.2.0

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
  SHA1:
3
- metadata.gz: d063c9ae63117f667db25abfe7fca016765c885f
4
- data.tar.gz: 88d27af82951bb66a29f4fe6fa09259b60121577
3
+ metadata.gz: d9a51caf7a526f3dfc55bc760dd10149e94f6c30
4
+ data.tar.gz: e2200bfde0db21ed268b44574f16d4c5a548528a
5
5
  SHA512:
6
- metadata.gz: de0f72996ba44e4c65d9adc6ba9bf49edcdb129302f69a645d6c93339f1f7c3836039ab50e61ec33d8bff5d26b7ef23e00793c433c7a5a76f2884b68f9ccca58
7
- data.tar.gz: c8506b1c47c6b228677d7e0e589b6fe58d87038c5a9d75b56c90f935e2fdfe2ba760713c0626ee86205797a88afe440b37bea687eb061d3fd5b0744578484b21
6
+ metadata.gz: fab516c4d2811f99faa29e070516bd247ff8157aaf64b1d61dc83638e1723a9fe6b1fca13a55652b109b1dbf210d64c81348b14a65d5d57a6c4d48ab98ac8214
7
+ data.tar.gz: c0a8ec88652c525adbf60c4b576a1bd844715f89db7a2190c9209208a8c530e9f61a2bdee8d176e7883465f46a4f66d9ad45fe8418ae5b454b2a3f9dc7fe741c
@@ -89,7 +89,6 @@ module Rack
89
89
  SET = 'SET'.freeze
90
90
 
91
91
  # Assorted.
92
- PACK = 'm'.freeze
93
92
  ZERO = 0
94
93
 
95
94
  def initialize(expires, marshaller, url)
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'rack-redic'
5
- spec.version = '1.1.0'
5
+ spec.version = '1.2.0'
6
6
  spec.authors = ['Evan Lecklider']
7
7
  spec.email = ['evan@lecklider.com']
8
8
 
@@ -22,7 +22,7 @@ describe Rack::Session::Redic::Storage do
22
22
  it_behaves_like 'a storage marshaller'
23
23
 
24
24
  subject do
25
- Rack::Session::Redic::Storage.new(nil, MessagePackMarshaller, ENV['REDIS_URL'])
25
+ described_class.new(nil, MessagePackMarshaller, ENV['REDIS_URL'])
26
26
  end
27
27
  end
28
28
  end
@@ -8,7 +8,7 @@ describe Rack::Session::Redic::Storage do
8
8
  it_behaves_like 'a storage marshaller'
9
9
 
10
10
  subject do
11
- Rack::Session::Redic::Storage.new(nil, Oj, ENV['REDIS_URL'])
11
+ described_class.new(nil, Oj, ENV['REDIS_URL'])
12
12
  end
13
13
  end
14
14
  end
@@ -7,7 +7,7 @@ describe Rack::Session::Redic::Storage do
7
7
  it_behaves_like 'a storage marshaller'
8
8
 
9
9
  subject do
10
- Rack::Session::Redic::Storage.new(nil, Marshal, ENV['REDIS_URL'])
10
+ described_class.new(nil, Marshal, ENV['REDIS_URL'])
11
11
  end
12
12
  end
13
13
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-redic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Lecklider