litestream 0.10.0 → 0.10.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 99f5a296d73675697a4cda9c690f7a1b8bf51ef3937b9145281a3295ccfc08fc
4
- data.tar.gz: 1e3821ec34ed5ba7a338378bc66cb092a9ececc19b769a29fe87600a0fc6ff85
3
+ metadata.gz: 9a950917abdc8148feef59013bc668c82e0b8395f0a8789d2002d232602fa842
4
+ data.tar.gz: b1bdd382539dff5ea3ff699cefd4d98e49c072fcd469d6d4bdca42a7809d4080
5
5
  SHA512:
6
- metadata.gz: 711ea9a4194f33c9dba013e04b2ba3d858020a0c02d778bc8dbad85b39d6d3ffb5f0ce75e3e8efccc8e76bacebcb32a632cfda473fb4062e91e006f2948fa27b
7
- data.tar.gz: 1f4c7c2ed419eaf48ec5136d70533ea90079327932f858ac232a9f84216b6f2638c5c617ba699a495c2666697d26ede46d483aba2ea9dccb32651a7c1944117c
6
+ metadata.gz: 6d8a2726d79171f89b43a929d05db9e42aa0c2a502c595336ad0805f7ae9febea6f382f468825e04573eff344ad4e07a9d0f5cb75d71d6e62a151ca5b39f1137
7
+ data.tar.gz: f590334f4b80876d50c74cf5dacd027a902c9e0516ece5a78cba7c88ca2d9a2c5a5fd08b118d3f71669d149fa4728569db1006e4b9a9823bcf83416c0dd68f41
@@ -1,3 +1,3 @@
1
1
  module Litestream
2
- VERSION = "0.10.0"
2
+ VERSION = "0.10.2"
3
3
  end
data/lib/litestream.rb CHANGED
@@ -39,7 +39,9 @@ module Litestream
39
39
  backup = SQLite3::Database.new(backup_path)
40
40
  result = backup.execute("SELECT 1 FROM _litestream_verification WHERE uuid = ? LIMIT 1", sentinel) # => [[1]] || []
41
41
 
42
- raise VerificationFailure, "Verification failed, sentinel not found" if result.empty?
42
+ raise VerificationFailure, "Verification failed for `#{database_path}`" if result.empty?
43
+
44
+ true
43
45
  ensure
44
46
  database.execute("DELETE FROM _litestream_verification WHERE uuid = ?", sentinel)
45
47
  database.close
@@ -13,7 +13,7 @@ namespace :litestream do
13
13
  true
14
14
  end
15
15
 
16
- desc 'Monitor and continuously replicate SQLite databases defined in your config file, e.g. rake litestream:replicate -- -exec "foreman start"'
16
+ desc 'Monitor and continuously replicate SQLite databases defined in your config file, for example `rake litestream:replicate -- -exec "foreman start"`'
17
17
  task replicate: :environment do
18
18
  options = {}
19
19
  if (separator_index = ARGV.index("--"))
@@ -26,7 +26,7 @@ namespace :litestream do
26
26
  Litestream::Commands.replicate(async: true, **options)
27
27
  end
28
28
 
29
- desc "Restore a SQLite database from a Litestream replica, e.g. rake litestream:restore -- -database=storage/production.sqlite3"
29
+ desc "Restore a SQLite database from a Litestream replica, for example `rake litestream:restore -- -database=storage/production.sqlite3`"
30
30
  task restore: :environment do
31
31
  options = {}
32
32
  if (separator_index = ARGV.index("--"))
@@ -40,7 +40,7 @@ namespace :litestream do
40
40
  Litestream::Commands.restore(database, async: true, **options)
41
41
  end
42
42
 
43
- desc "List all databases and associated replicas in the config file, e.g. rake litestream:databases -- -no-expand-env"
43
+ desc "List all databases and associated replicas in the config file, for example `rake litestream:databases -- -no-expand-env`"
44
44
  task databases: :environment do
45
45
  options = {}
46
46
  if (separator_index = ARGV.index("--"))
@@ -53,7 +53,7 @@ namespace :litestream do
53
53
  Litestream::Commands.databases(async: true, **options)
54
54
  end
55
55
 
56
- desc "List all generations for a database or replica, e.g. rake litestream:generations -- -database=storage/production.sqlite3"
56
+ desc "List all generations for a database or replica, for example `rake litestream:generations -- -database=storage/production.sqlite3`"
57
57
  task generations: :environment do
58
58
  options = {}
59
59
  if (separator_index = ARGV.index("--"))
@@ -67,7 +67,7 @@ namespace :litestream do
67
67
  Litestream::Commands.generations(database, async: true, **options)
68
68
  end
69
69
 
70
- desc "List all snapshots for a database or replica, e.g. rake litestream:snapshots -- -database=storage/production.sqlite3"
70
+ desc "List all snapshots for a database or replica, for example `rake litestream:snapshots -- -database=storage/production.sqlite3`"
71
71
  task snapshots: :environment do
72
72
  options = {}
73
73
  if (separator_index = ARGV.index("--"))
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: litestream
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Margheim
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-05 00:00:00.000000000 Z
11
+ date: 2024-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logfmt