persistent-cache-storage-ram 0.1.0 → 0.1.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: 199a639eddb131eb8da3bfb5846a226d0c8fbdc8
4
- data.tar.gz: c3794dc295d384e69ece942fd43844fdcd521063
3
+ metadata.gz: 8e969703e8c1e72dbb19e9207e9fcaa905d89c00
4
+ data.tar.gz: b6e845d009a5f9b3d157e3b5826639ba62b7d05a
5
5
  SHA512:
6
- metadata.gz: 8fed113b3c3ba8eeec658c19b9c1d7f9c62956204919801f7f28fb6432e5dcdc57f453c3e3a6c3048e04aaf08c07c61a5551e509692253cf1b69cfa068afebe4
7
- data.tar.gz: ee51d977ca5e1a7f1546c7da540a1687d11bfa266f980a5a366769f247024d327afeefb06cd52c1128efa071aade110a2f6873c4edd51d8d7a12f3aa41fb62e8
6
+ metadata.gz: 4e44ba7e4c688c7c84ecc9693fe503df1eac2f911abb6c348a0744db3782f205becfcb138735a3b554123dcf4f282394b89e9f259cedd844537bd23fa3c04a25
7
+ data.tar.gz: 25275e98c284310810825295b50297b07f77f39296e110544c9eb86853ec6301b4cdb66442d5317dd9fc5af6ed4a16debdf6ea24835a9c7a7e869cb774a187a3
data/.gitignore CHANGED
@@ -1,5 +1,6 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
+ *.gem
3
4
  /Gemfile.lock
4
5
  /_yardoc/
5
6
  /coverage/
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Persistent::Cache::StorageRAM
1
+ # Persistent::StorageRAM
2
2
 
3
3
  This gem provides a RAM storage back-end to Persistent::Cache. Please see https://rubygems.org/gems/persistent-cache.
4
4
 
@@ -4,7 +4,7 @@ require "persistent-cache/storage_api"
4
4
  require "eh/eh"
5
5
 
6
6
  module Persistent
7
- class StorageRAM < Persistent::Cache::StorageApi::API
7
+ class StorageRAM < Persistent::Storage::API
8
8
  attr_accessor :storage
9
9
 
10
10
  def initialize()
@@ -1,9 +1,7 @@
1
1
  module Persistent
2
- module Cache
3
- module Storage
4
- module Ram
5
- VERSION = "0.1.0"
6
- end
2
+ module Storage
3
+ module Ram
4
+ VERSION = "0.1.1"
7
5
  end
8
6
  end
9
7
  end
@@ -5,7 +5,7 @@ require 'persistent-cache/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "persistent-cache-storage-ram"
8
- spec.version = Persistent::Cache::Storage::Ram::VERSION
8
+ spec.version = Persistent::Storage::Ram::VERSION
9
9
  spec.authors = ["Ernst Van Graan"]
10
10
  spec.email = ["ernst.van.graan@hetzner.co.za"]
11
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: persistent-cache-storage-ram
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ernst Van Graan