persistent-cache-storage-sqlite 0.1.3 → 0.1.4
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/persistent-cache/version.rb +1 -1
- data/persistent-cache-storage-sqlite.gemspec +3 -3
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 105be8f10859bb721761fbca2af3cb24b50a9bab8f10e5e04c5769ab9d891b01
|
|
4
|
+
data.tar.gz: 2814b4a461b6eb737ba944cfc403078fbb7444d7124c2d9e1aa492e24e5dbb47
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5311bc4cea07e3717a646e16651210678e0bd69f990d4a81becb98bba953e7fc82d0d9f2b4e06f7502212ad1141d9370cc579f8bc96146b1de90a9b111596bb3
|
|
7
|
+
data.tar.gz: 9e640d6682b602bd98e60ef5d0ad8c8b034cf4655f36d9d2860dc78e86b387fa5607ee2326a291b7ed2d40bc530c0a9d7c22ebd1f01d08934443073fc9deead6
|
data/Gemfile.lock
CHANGED
|
@@ -6,12 +6,12 @@ require 'persistent-cache/version'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = 'persistent-cache-storage-sqlite'
|
|
8
8
|
spec.version = Persistent::Storage::Sqlite::VERSION
|
|
9
|
-
spec.authors = [
|
|
10
|
-
spec.email = [
|
|
9
|
+
spec.authors = ["Ernst Van Graan", "xneelo (Pty) Ltd"]
|
|
10
|
+
spec.email = ["ernst.vangraan@gmail.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Provides a SQLite storage back-end to Persistent::Cache}
|
|
13
13
|
spec.description = %q{Provides a SQLite storage back-end to Persistent::Cache}
|
|
14
|
-
spec.homepage = 'https://github.com/
|
|
14
|
+
spec.homepage = 'https://github.com/xneelo/persistent-cache-storage-sqlite'
|
|
15
15
|
spec.license = 'MIT'
|
|
16
16
|
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: persistent-cache-storage-sqlite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- Ernst Van Graan
|
|
8
|
+
- xneelo (Pty) Ltd
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: exe
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
12
|
+
date: 2019-08-28 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: bundler
|
|
@@ -124,7 +125,7 @@ dependencies:
|
|
|
124
125
|
version: 1.0.0
|
|
125
126
|
description: Provides a SQLite storage back-end to Persistent::Cache
|
|
126
127
|
email:
|
|
127
|
-
-
|
|
128
|
+
- ernst.vangraan@gmail.com
|
|
128
129
|
executables: []
|
|
129
130
|
extensions: []
|
|
130
131
|
extra_rdoc_files: []
|
|
@@ -144,7 +145,7 @@ files:
|
|
|
144
145
|
- lib/persistent-cache/storage_sqlite.rb
|
|
145
146
|
- lib/persistent-cache/version.rb
|
|
146
147
|
- persistent-cache-storage-sqlite.gemspec
|
|
147
|
-
homepage: https://github.com/
|
|
148
|
+
homepage: https://github.com/xneelo/persistent-cache-storage-sqlite
|
|
148
149
|
licenses:
|
|
149
150
|
- MIT
|
|
150
151
|
metadata: {}
|
|
@@ -163,8 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
163
164
|
- !ruby/object:Gem::Version
|
|
164
165
|
version: '0'
|
|
165
166
|
requirements: []
|
|
166
|
-
|
|
167
|
-
rubygems_version: 2.7.10
|
|
167
|
+
rubygems_version: 3.0.6
|
|
168
168
|
signing_key:
|
|
169
169
|
specification_version: 4
|
|
170
170
|
summary: Provides a SQLite storage back-end to Persistent::Cache
|