entangler 1.4.0 → 1.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/README.md +2 -0
- data/exe/entangler +3 -2
- data/lib/entangler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3f771c45fb004582c9d0dd513078d868968799eced4329ffb12ae26af25edc9
|
|
4
|
+
data.tar.gz: 2099f06c0b478738ed7486c2d8af0baf7e8ec9eb44844e3cc367ca2ed669ac13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f79f9ec42e30d2a3c033cbf350fa3f6ca158c43f62290a8f9a67ebc02feb2cdf1b36b8cef461fa28e43dbbb88080a10453be4a7ae966feef7354b34c4ec9a540
|
|
7
|
+
data.tar.gz: cb83a67740893ae8d0e972be608e6aab64f80f31e47b126faf1f5b0f830148e53986c51fd877343541264dd9b92461137c3dff71839f62989f0c47914ca75d54
|
data/README.md
CHANGED
|
@@ -30,6 +30,8 @@ Options:
|
|
|
30
30
|
All paths should be relative to the base sync directory.
|
|
31
31
|
-p, --port PORT Overwrite the SSH port (usually 22)
|
|
32
32
|
(doesn't do anything in slave mode)
|
|
33
|
+
--force-polling Forces the use of the listen polling adapter
|
|
34
|
+
(works cross-platform, generally slower, doesn't do anything in slave mode)
|
|
33
35
|
--no-rvm Skip attempting to load RVM on remote
|
|
34
36
|
-v, --verbose Log Debug lines
|
|
35
37
|
-q, --quiet Don't log to stdout in master process
|
data/exe/entangler
CHANGED
|
@@ -32,7 +32,7 @@ OptionParser.new do |opts|
|
|
|
32
32
|
opts.separator 'Options:'
|
|
33
33
|
|
|
34
34
|
opts.on('-i', "--ignore '.git'", "Ignore path when syncing, string is regex if surrounded by '/'",
|
|
35
|
-
'All paths should be relative to the base sync directory
|
|
35
|
+
'All paths should be relative to the base sync directory') do |ignore|
|
|
36
36
|
options[:ignore] ||= []
|
|
37
37
|
options[:ignore] << ignore
|
|
38
38
|
end
|
|
@@ -41,7 +41,8 @@ OptionParser.new do |opts|
|
|
|
41
41
|
"(doesn't do anything in slave mode)")
|
|
42
42
|
|
|
43
43
|
bool_opt(options, opts, :force_polling, '--force-polling',
|
|
44
|
-
'Forces the use of the listen polling adapter
|
|
44
|
+
'Forces the use of the listen polling adapter',
|
|
45
|
+
"(works cross-platform, generally slower, doesn't do anything in slave mode)")
|
|
45
46
|
|
|
46
47
|
bool_opt(options, opts, :no_rvm, '--no-rvm', 'Skip attempting to load RVM on remote')
|
|
47
48
|
|
data/lib/entangler/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: entangler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dave Allie
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-01-
|
|
11
|
+
date: 2024-01-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|