litestream 0.10.1-arm64-linux → 0.10.2-arm64-linux

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
  SHA256:
3
- metadata.gz: 075d7c38a9b7bc6c89a30d35c2d43cd9f715b5cc4c530ff9fa33fe6e32e81cd9
4
- data.tar.gz: 9ae27b5256f659d4e408983babe271f360f6878fcd950bc9ad92772c22820f52
3
+ metadata.gz: b78e23b989c21282b8f0779872a2917dcd3c10275ab1ab8214a74b019948aa08
4
+ data.tar.gz: 993742ec0b13c1e0b1cb88258313269150ab070f4c23c10cde76ac6ef598cbec
5
5
  SHA512:
6
- metadata.gz: 56ed1f6a402f05ab6f4756aea106084d94bded335b6581055d7d3c411951527f02d9d1cc6911a889737413a9ef495f1837076edd4a1ade42ae5015dff6a2b4ef
7
- data.tar.gz: 31fc473b5bacb124e9f9fe4a18158ba695d0e5ba5f77a6f7532466f1c50203a544d532adae6e23ff8384f6a99a0619d7e1c9d5e95bacdfa6851bd3c10d62edd5
6
+ metadata.gz: 952d176f704ce7cd1e0c2b78b21af5c8b99d4afa50b1157feccd11e587593be72fa6abc44811f092b8eb49e705dfbf01f25fd41b60c714a804d1fa9ed557873b
7
+ data.tar.gz: '04825403e8f34a80976519149e7031e6c5c7af63bf441347896c07a65eace5b55c8c8dd06c8fe7e60a881379a7a2f90bcd3dffab9d666068ce93d8176f2628b3'
@@ -1,3 +1,3 @@
1
1
  module Litestream
2
- VERSION = "0.10.1"
2
+ VERSION = "0.10.2"
3
3
  end
@@ -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.1
4
+ version: 0.10.2
5
5
  platform: arm64-linux
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