docker-sync 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b49e15af33c0e45ecd3a780c8772ed3ee051079d24e89eef28bd3f14d5f006be
4
- data.tar.gz: 0ad485de1c4dc1aa3614f8e0302cb9a898ef9edb5f420c529edb8f19cec006df
3
+ metadata.gz: b8371762410da11cfc2409b78d7e3bc302958a8a15bc027386f2878178166b3b
4
+ data.tar.gz: 4f5a9b2c252d75ac44457b73394a71abf557cef2cb53c991213dd2e491819068
5
5
  SHA512:
6
- metadata.gz: '08deb9e92e76aef664e05485708c6232de8466f5fdd927e1ca87e6494f508bb848dcbefce07cfe8189036e489a931907b9fecdff8d168070d205cad556b4e74a'
7
- data.tar.gz: 6c7e94c4a8087581ef173d2e7067e479bcf6408f769de45f43a05e64354780e0443c489e1ed38fa203227a4024345cc4acd4497140ce69f0fe7e82998a80af02
6
+ metadata.gz: 13174ba9c74a5488e560d532a4124c2b96bef98d430605181b488e3aec58e9229826e28e7710d75a835390d963b9043c63c7ad029e96605202d5ed26c16ef61b
7
+ data.tar.gz: 92ff8b52d5a64ad582191a944f177ed030e21a1a70270733200945d51253767d7b47d4b361b471abe481b14087e090589d42f4e5facab6118974f868dd8a1e10
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.3
1
+ 1.0.4
@@ -176,6 +176,7 @@ module DockerSync
176
176
 
177
177
  def expand_ignore_strings
178
178
  expanded_ignore_strings = []
179
+ default_expanded_ignore_strings = []
179
180
 
180
181
  exclude_type = 'Name'
181
182
  unless @options['sync_excludes_type'].nil?
@@ -185,7 +186,7 @@ module DockerSync
185
186
  # use the 'Name' exclude type for all default ignores
186
187
  # to prevent conflicts with the sync_excludes_type settings
187
188
  unless Environment.default_ignores.nil?
188
- expanded_ignore_strings = Environment.default_ignores.map do |pattern|
189
+ default_expanded_ignore_strings = Environment.default_ignores.map do |pattern|
189
190
  "-ignore='Name #{pattern}'"
190
191
  end
191
192
  end
@@ -201,7 +202,7 @@ module DockerSync
201
202
  "-ignore='#{ignore_string}'"
202
203
  end
203
204
  end
204
- expanded_ignore_strings
205
+ expanded_ignore_strings.append(default_expanded_ignore_strings).flatten!
205
206
  end
206
207
  end
207
208
  end
@@ -63,7 +63,8 @@ module DockerSync
63
63
  args = []
64
64
 
65
65
  unless @options['sync_excludes'].nil?
66
- args = excludes_list.append(Environment.default_ignores).flatten!.map { |pattern| "--exclude='#{pattern}'" } + args
66
+ excludes_list = @options['sync_excludes'].append(Environment.default_ignores).flatten
67
+ args = excludes_list.map { |pattern| "--exclude='#{pattern}'" }
67
68
  end
68
69
  args.push('-ap')
69
70
  args.push(@options['sync_args']) if @options.key?('sync_args')
@@ -97,6 +97,7 @@ module DockerSync
97
97
 
98
98
  def expand_ignore_strings
99
99
  expanded_ignore_strings = []
100
+ default_expanded_ignore_strings = []
100
101
 
101
102
  exclude_type = 'Name'
102
103
  exclude_type = @options['sync_excludes_type'] unless @options['sync_excludes_type'].nil?
@@ -104,7 +105,7 @@ module DockerSync
104
105
  # use the 'Name' exclude type for all default ignores
105
106
  # to prevent conflicts with the sync_excludes_type settings
106
107
  unless Environment.default_ignores.nil?
107
- expanded_ignore_strings = Environment.default_ignores.map do |pattern|
108
+ default_expanded_ignore_strings = Environment.default_ignores.map do |pattern|
108
109
  "-ignore='Name #{pattern}'"
109
110
  end
110
111
  end
@@ -120,7 +121,7 @@ module DockerSync
120
121
  "-ignore='#{ignore_string}'"
121
122
  end
122
123
  end
123
- expanded_ignore_strings
124
+ expanded_ignore_strings.append(default_expanded_ignore_strings).flatten!
124
125
  end
125
126
 
126
127
  def sync_options
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.3
4
+ version: 1.0.4
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-14 00:00:00.000000000 Z
11
+ date: 2022-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor