litestream 0.10.1-x86_64-linux → 0.10.2-x86_64-linux

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: feb8967ef21cccf76f855e07d5f2e09508b3ff7e9188c7c96ec08b51263d76a6
4
- data.tar.gz: 716742d9bd981b9641b1ee79002196b32d318b565dec1695c20564cb8de621f9
3
+ metadata.gz: ef642a54519c0b8b8daccf705fac03af7540d33f18827020d2e2a809ccf1ebcc
4
+ data.tar.gz: 727bd89f59867304d77dd2e3d7b54dcc89c2c4e0090e22742fd553e2ba959634
5
5
  SHA512:
6
- metadata.gz: f86209f00eab67b147b5a23679d7db4fa4e6591766a6d040a3c216160579cd3d3b358a759bb25084ff5525f951b28169c067a28ad3b83b12787986e0e74c0215
7
- data.tar.gz: 8d3567f8ee2f9251b3f1a194cbbcd6a3b6cf18cd69e0a5c6ef8dfd47d85fbbf8b05a73141e3b653f1d136e5472f20df37e36833f66d772251ed5ed34f471ddee
6
+ metadata.gz: 757fbe93f907d05cf53dddbfcf99b74d61a441315514de0862f8634a859aa320ddbbd4e22856032e29f810486e9e31a5bea5ffc2a245f6ae0a1d363b978e4da1
7
+ data.tar.gz: 7f335c91175a92f246fbfb7959718fe21549bd445ea15d544a319e889d4934c9d822940aef375e51dee101652e9bff5d087df7b633101062b13b35854fea292d
@@ -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: x86_64-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