persistent-cache-storage-directory 0.1.1 → 0.1.2

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: 33e298440c1188ff8ba291722dd72a05d329fb2c
4
- data.tar.gz: c6778ab7122bae0ab0e1d0a069e842889f447101
3
+ metadata.gz: e84c9be18f43e0df94fee09673d527622a3251ed
4
+ data.tar.gz: a19f93d7f34aa78f48b502389b80eb1fa8a4f91e
5
5
  SHA512:
6
- metadata.gz: 2226c52de75599967ff7ea4d566d1c80f0c2f14edc469d77386720822153de03f598ef98baa869392c9fad7f8fcadf35ff60f07eb9ae4e979cbeacacd9cadb65
7
- data.tar.gz: c2df229ee17b0423f6ee1efd1a003671dcdab8cff6debb1498bd8516fd1d6fb711952145d2ac1c79a59396dc88f8ed8da1cb254913e9da0dcb070691918620f5
6
+ metadata.gz: 3043d1d430338bcb6281c819ce034979d6a204a36b724cb5c57175fdd7aa86fabe65408a3224dce6adf5f1f59cfa8362cbb22d9390e6c3a1dab8285074a65207
7
+ data.tar.gz: b7bb07db5356a11d0d9882c8bb3f94fed61f8c82cd47dbfe595b19a9c4a7f584184f93f62bd9b2936dfd923c5a81df0722bfea7719d2d4793fddbddee0c166df
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Persistent::Cache::StorageDirectory
1
+ # Persistent::StorageDirectory
2
2
 
3
3
  This gem provides a directory storage back-end to Persistent::Cache. Please see https://rubygems.org/gems/persistent-cache.
4
4
 
@@ -2,7 +2,7 @@ require 'persistent-cache/storage_api'
2
2
  require 'persistent-cache/version'
3
3
 
4
4
  module Persistent
5
- class StorageDirectory < Persistent::Cache::StorageApi::API
5
+ class StorageDirectory < Persistent::Storage::API
6
6
  CACHE_FILE = "cache.gz" unless defined? CACHE_FILE; CACHE_FILE.freeze
7
7
 
8
8
  attr_accessor :storage_root
@@ -1,9 +1,7 @@
1
1
  module Persistent
2
- module Cache
3
- module Storage
4
- module Directory
5
- VERSION = "0.1.1"
6
- end
2
+ module Storage
3
+ module Directory
4
+ VERSION = "0.1.2"
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-directory"
8
- spec.version = Persistent::Cache::Storage::Directory::VERSION
8
+ spec.version = Persistent::Storage::Directory::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-directory
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ernst Van Graan