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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: caeaeab73f12f452f171a80fc4c202f4e3bfcafea5f7c1509057175e6bec0c1f
4
- data.tar.gz: 950085ffeb8d56d5d5d23163f5024ee09ae173ae5d95dbb5981ee2274e24189d
3
+ metadata.gz: d3f771c45fb004582c9d0dd513078d868968799eced4329ffb12ae26af25edc9
4
+ data.tar.gz: 2099f06c0b478738ed7486c2d8af0baf7e8ec9eb44844e3cc367ca2ed669ac13
5
5
  SHA512:
6
- metadata.gz: 9ccbc2db0d327844b0a78f52468bb11582d55c53a986ddb7158102017d229448cdb34b7ed4c16449338eb2d00f231b44ff949edebb2b40eaa0fa52d8f896b87c
7
- data.tar.gz: 6f89e593575e7120bfc897f213219c1174eef54dcdc16c8a5a125cd363fceecd4fc6cd820abca981da4e9d7f1bf974a16cac0e0a2a55217194040094631485b1
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.') do |ignore|
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 (works cross-platform, generally slower)')
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Entangler
4
- VERSION = '1.4.0'
4
+ VERSION = '1.4.1'
5
5
  end
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.0
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-15 00:00:00.000000000 Z
11
+ date: 2024-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler