persistent-cache-storage-sqlite 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: edcfef81a1cf33618bf7693595883413bcd7cd04
4
- data.tar.gz: c3404ff62e442e2bbb716eb5943d95617e0daa23
3
+ metadata.gz: 04c6047f22745139cb3be3b8fe27782fc8196e04
4
+ data.tar.gz: c3fe8452d0c3ed999254b820d12b85718e707ac9
5
5
  SHA512:
6
- metadata.gz: d93fdbb4312bf4df2044c06d48d4cef4358e409655f5dc65765455ab8773f7a6e13b3c8ba4033ea68162521c850fa36abd38c711442d0c4f61ae06646170f0d0
7
- data.tar.gz: 237afc736b37e49c4e83a42a9ed2fe021994feef1e6954f1dbb463e7ac991b82874464c346fccc32c1678664be193ba3b31e1c43371d9b5bd3271ae39c98485e
6
+ metadata.gz: 61095a6568ff50ec02983ee6fe461b334fd27791dbef507a7e29455ad213a194c03c535be2e82f7f90a2ae18570c9845008c27940eea73e87ef7b57fee63b429
7
+ data.tar.gz: e55651adcc5d980a838503d63373054b96fc62be25bca7f10a4bbda57ed2f31bf26bfab961a723cda1725d13436e8f67d5f5ea5271b79e9d3186fa3b36f384f9
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Persistent::Cache::StorageSQLite
1
+ # Persistent::StorageSQLite
2
2
 
3
3
  This gem provides a SQLite storage back-end to Persistent::Cache. Please see https://rubygems.org/gems/persistent-cache.
4
4
 
@@ -5,7 +5,7 @@ require "base64"
5
5
  require "eh/eh"
6
6
 
7
7
  module Persistent
8
- class StorageSQLite < Persistent::Cache::StorageApi::API
8
+ class StorageSQLite < Persistent::Storage::API
9
9
  DB_TABLE = "key_value" unless defined? DB_TABLE; DB_TABLE.freeze
10
10
  DB_TIMEOUT = 30000 unless defined? DB_TIMEOUT; DB_TIMEOUT.freeze
11
11
 
@@ -1,9 +1,7 @@
1
1
  module Persistent
2
- module Cache
3
- module Storage
4
- module Sqlite
5
- VERSION = "0.1.1"
6
- end
2
+ module Storage
3
+ module Sqlite
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-sqlite"
8
- spec.version = Persistent::Cache::Storage::Sqlite::VERSION
8
+ spec.version = Persistent::Storage::Sqlite::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-sqlite
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