rack-cache 1.4.0 → 1.4.1

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: d61bb5d7f4bba289502c1aa5d382520668fecc64
4
- data.tar.gz: 2c5a3f2cc3ae4abac413f359f2eb4368207783e1
3
+ metadata.gz: dfb363c288fc5d951b0907ad39991bc5daee24c0
4
+ data.tar.gz: 0d7e5ce084a38ffed3bb41e87da26e5fb6e83ac6
5
5
  SHA512:
6
- metadata.gz: 01fc1f845c71674c31f4ab6b13038c4bdec195e4bfffbe93d64195f0a1190b6899d57192f1037e6524a31bae6e18eaeda6d5f5aa003936712e36d1157e5ba277
7
- data.tar.gz: 1563459bfd4ad0a35ec8aee09f57165c6052f2d1cb3cfd191e91456e7c6840ac9e85907698d78f112e628be54ad9099a17ce37e600f6a2d469f9e69fcf20b5a5
6
+ metadata.gz: 3f29d10714d8cc5e746556d71866493e76489d6ec2a6ff2a9a1f02ed4eb1a6a7764c7dd863f76493ac4e11f253d2aae1886dc7732afda511150c63562de02492
7
+ data.tar.gz: 08ca84c212fb3e3f482004ec806460f218777fc61efecd6640a6e2e384fd298461edbe1f37cfc4d1c3d0483c48e8e97e014cb82be88fcfd180cd528b69094485
data/README.md CHANGED
@@ -70,7 +70,7 @@ You should now see `Rack::Cache` listed in the middleware pipeline:
70
70
 
71
71
  See the following for more information:
72
72
 
73
- http://snippets.aktagon.com/snippets/302
73
+ http://snippets.aktagon.com/snippets/302-how-to-setup-and-use-rack-cache-with-rails
74
74
 
75
75
  Using with Dalli
76
76
  ----------------
@@ -148,20 +148,20 @@ module Rack::Cache
148
148
  # pairs. An empty Array must be returned if nothing is cached for
149
149
  # the specified key.
150
150
  def read(key)
151
- raise NotImplemented
151
+ raise NotImplementedError
152
152
  end
153
153
 
154
154
  # Store an Array of request/response pairs for the given key. Concrete
155
155
  # implementations should not attempt to filter or concatenate the
156
156
  # list in any way.
157
157
  def write(key, negotiations)
158
- raise NotImplemented
158
+ raise NotImplementedError
159
159
  end
160
160
 
161
161
  # Remove all cached entries at the key specified. No error is raised
162
162
  # when the key does not exist.
163
163
  def purge(key)
164
- raise NotImplemented
164
+ raise NotImplementedError
165
165
  end
166
166
 
167
167
  private
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-cache
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Tomayko