mark-twin 0.4.0 → 0.4.1
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/lib/twin/version.rb +1 -1
- metadata +20 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 04f2367ae736d27617dc31bea7b49ca41e4d47484a1abffd8ea016b44b165b43
|
|
4
|
+
data.tar.gz: e91f91a59dde5599cea9e9808ac766eccdbf3c16a8f03a1f978893df773733cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fb2f1b86abbd291336f383dbba5311f01f018062f052802daf79c8edf13e662ce5c7dbeb1a648e28dc0435854f73194b7be1e2fbadd1c235af654681a86f52b
|
|
7
|
+
data.tar.gz: 64cbe2f661bc4af7debb431d4cf7e8dea1601fa19eb440a1227d4f06a0dddcf9fc40b38a2867c70046722d428fc93ba0af2dbfc0dec27455b3eaf656c595de85
|
data/lib/twin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mark-twin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ralf Hülsmann
|
|
@@ -23,8 +23,23 @@ dependencies:
|
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
25
|
version: '5.0'
|
|
26
|
-
description:
|
|
27
|
-
|
|
26
|
+
description: |
|
|
27
|
+
Keeping two machines' configuration aligned usually ends in a shell script
|
|
28
|
+
nobody dares touch, because the reasons behind it were never written down.
|
|
29
|
+
|
|
30
|
+
twin puts the reasons and the instructions in the same file. A sync-file is
|
|
31
|
+
ordinary Markdown: the prose explains why a path is synced, and fenced YAML
|
|
32
|
+
blocks say what to do. rsync does the copying.
|
|
33
|
+
|
|
34
|
+
It knows the awkward parts. Paths the other machine owns stay untouched and
|
|
35
|
+
are named as such, not buried among build artefacts. When both sides changed
|
|
36
|
+
since the last sync, twin shows a diff and asks before overwriting anything,
|
|
37
|
+
once for the whole group, so a half-applied deploy is not a state it can
|
|
38
|
+
leave you in. Targets are a local path, a mounted volume, or user@host:/path
|
|
39
|
+
over ssh, with no difference in how they are used.
|
|
40
|
+
|
|
41
|
+
Interactive selection runs through fzf with a rendered Markdown preview; the
|
|
42
|
+
same sync-files drive scriptable status, dry-run and sync commands.
|
|
28
43
|
email:
|
|
29
44
|
- huelsmann@sevelen.net
|
|
30
45
|
executables:
|
|
@@ -55,6 +70,8 @@ licenses:
|
|
|
55
70
|
metadata:
|
|
56
71
|
source_code_uri: https://github.com/rhsev/mark-twin
|
|
57
72
|
bug_tracker_uri: https://github.com/rhsev/mark-twin/issues
|
|
73
|
+
changelog_uri: https://github.com/rhsev/mark-twin/releases
|
|
74
|
+
documentation_uri: https://github.com/rhsev/mark-twin#readme
|
|
58
75
|
post_install_message: |2+
|
|
59
76
|
|
|
60
77
|
twin requires these external tools in your PATH:
|