docker-sync 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/docker-sync/compose.rb +2 -0
- data/lib/docker-sync/docker_compose_session.rb +2 -0
- data/lib/docker-sync/environment.rb +4 -0
- data/lib/docker-sync/sync_strategy/native_osx.rb +1 -1
- data/lib/docker-sync/sync_strategy/rsync.rb +4 -2
- data/lib/docker-sync/sync_strategy/unison.rb +3 -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: 440a1277f902234557ce07713930f28cf69e95fa6ff77ee095128fe407b2a6da
|
4
|
+
data.tar.gz: 65643b530ee3cfa703fa03140d07545a459f0e6414ccc4ef1fbb4bcc9485bb79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1bd8e762ee2d4eaff553501371169439c5fb511670a4a6937110d16965c9da0bfdac7ec0298a8b2dc2f8548333fd120c1174986320ce314dcfcd86ffc03b3329
|
7
|
+
data.tar.gz: f8528c8f0747cafb57ae66f638e78128ee561adeb77b7c9d3f8cf439fb0324f5637cca4dd48d6916952bc27baa35e6fcf9e14a7da7ac888211d3670dd31cf1c0
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.1
|
data/lib/docker-sync/compose.rb
CHANGED
@@ -183,7 +183,7 @@ module DockerSync
|
|
183
183
|
end
|
184
184
|
|
185
185
|
unless @options['sync_excludes'].nil?
|
186
|
-
expanded_ignore_strings = @options['sync_excludes'].map do |pattern|
|
186
|
+
expanded_ignore_strings = @options['sync_excludes'].append(Environment.default_ignores).flatten!.map do |pattern|
|
187
187
|
if exclude_type == 'none'
|
188
188
|
# the ignore type like Name / Path are part of the pattern
|
189
189
|
ignore_string = "#{pattern}"
|
@@ -61,8 +61,10 @@ module DockerSync
|
|
61
61
|
|
62
62
|
def sync_options
|
63
63
|
args = []
|
64
|
-
|
65
|
-
|
64
|
+
excludes_list = @options['sync_excludes'].append(Environment.default_ignores).flatten!
|
65
|
+
|
66
|
+
unless excludes_list.nil?
|
67
|
+
args = excludes_list.map { |pattern| "--exclude='#{pattern}'" } + args
|
66
68
|
end
|
67
69
|
args.push('-ap')
|
68
70
|
args.push(@options['sync_args']) if @options.key?('sync_args')
|
@@ -102,7 +102,7 @@ module DockerSync
|
|
102
102
|
exclude_type = @options['sync_excludes_type'] unless @options['sync_excludes_type'].nil?
|
103
103
|
|
104
104
|
unless @options['sync_excludes'].nil?
|
105
|
-
expanded_ignore_strings = @options['sync_excludes'].map do |pattern|
|
105
|
+
expanded_ignore_strings = @options['sync_excludes'].append(Environment.default_ignores).flatten!.map do |pattern|
|
106
106
|
ignore_string = if exclude_type == 'none'
|
107
107
|
# the ignore type like Name / Path are part of the pattern
|
108
108
|
pattern.to_s
|
@@ -135,6 +135,8 @@ module DockerSync
|
|
135
135
|
|
136
136
|
# cares about conflict resolution
|
137
137
|
def sync_prefer
|
138
|
+
sync_host_port = get_host_port(get_container_name, UNISON_CONTAINER_PORT)
|
139
|
+
|
138
140
|
case @options.fetch('sync_prefer', 'default')
|
139
141
|
when 'default' then "-prefer '#{@options['src']}' -copyonconflict" # thats our default, if nothing is set
|
140
142
|
when 'src' then "-prefer '#{@options['src']}'"
|
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.1
|
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-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|