docker-sync 1.0.1 → 1.0.2
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/VERSION +1 -1
- data/lib/docker-sync/sync_strategy/rsync.rb +2 -3
- data/lib/docker-sync/sync_strategy/unison.rb +9 -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: 99de3e53b469050cd1cf2afd597aa4fabcc23338e4d6d5cd67ebb833fa1ff184
|
|
4
|
+
data.tar.gz: 4aadccbadd4ebeade4b3b5d214a900a411198c74aff3e813f71c9a6c4f297aaa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df858a48916d036de531a04ad6707cb71e5212f9883c0df2f6ad8d326ecf349b64c4f4d859794ccc2afc35d2fd9fba31c17afaeebcb395df2cf1c91b548d617b
|
|
7
|
+
data.tar.gz: 311975e4eacca8e19f2d5a3dc1f707850b5719e5ddb02d6f5250b777a5f738214534d691f54338d171f8e4a84d3d025e81a4a39b276758bdc2fc20c39caf4591
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.2
|
|
@@ -61,10 +61,9 @@ module DockerSync
|
|
|
61
61
|
|
|
62
62
|
def sync_options
|
|
63
63
|
args = []
|
|
64
|
-
excludes_list = @options['sync_excludes'].append(Environment.default_ignores).flatten!
|
|
65
64
|
|
|
66
|
-
unless
|
|
67
|
-
args = excludes_list.map { |pattern| "--exclude='#{pattern}'" } + args
|
|
65
|
+
unless @options['sync_excludes'].nil?
|
|
66
|
+
args = excludes_list.append(Environment.default_ignores).flatten!.map { |pattern| "--exclude='#{pattern}'" } + args
|
|
68
67
|
end
|
|
69
68
|
args.push('-ap')
|
|
70
69
|
args.push(@options['sync_args']) if @options.key?('sync_args')
|
|
@@ -101,8 +101,16 @@ module DockerSync
|
|
|
101
101
|
exclude_type = 'Name'
|
|
102
102
|
exclude_type = @options['sync_excludes_type'] unless @options['sync_excludes_type'].nil?
|
|
103
103
|
|
|
104
|
+
# use the 'Name' exclude type for all default ignores
|
|
105
|
+
# to prevent conflicts with the sync_excludes_type settings
|
|
106
|
+
unless Environment.default_ignores.nil?
|
|
107
|
+
expanded_ignore_strings = Environment.default_ignores.map do |pattern|
|
|
108
|
+
"-ignore='Name #{pattern}'"
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
104
112
|
unless @options['sync_excludes'].nil?
|
|
105
|
-
expanded_ignore_strings = @options['sync_excludes'].
|
|
113
|
+
expanded_ignore_strings = @options['sync_excludes'].map do |pattern|
|
|
106
114
|
ignore_string = if exclude_type == 'none'
|
|
107
115
|
# the ignore type like Name / Path are part of the pattern
|
|
108
116
|
pattern.to_s
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: docker-sync
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eugen Mayer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-09-
|
|
11
|
+
date: 2022-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|