as 0.3.18.11 → 1.0
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.
- data/lib/cli/file_helper.rb +3 -3
- metadata +4 -6
data/lib/cli/file_helper.rb
CHANGED
|
@@ -94,9 +94,9 @@ module VMC::Cli
|
|
|
94
94
|
unreachable = []
|
|
95
95
|
files.each do |f|
|
|
96
96
|
file = Pathname.new(f)
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
97
|
+
if file.symlink? && !file.realpath.to_s.start_with?(abspath)
|
|
98
|
+
unreachable << file.relative_path_from(pwd).to_s
|
|
99
|
+
end
|
|
100
100
|
end
|
|
101
101
|
|
|
102
102
|
unless unreachable.empty?
|
metadata
CHANGED
|
@@ -3,11 +3,9 @@ name: as
|
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
|
5
5
|
segments:
|
|
6
|
+
- 1
|
|
6
7
|
- 0
|
|
7
|
-
|
|
8
|
-
- 18
|
|
9
|
-
- 11
|
|
10
|
-
version: 0.3.18.11
|
|
8
|
+
version: "1.0"
|
|
11
9
|
platform: ruby
|
|
12
10
|
authors:
|
|
13
11
|
- Another Service
|
|
@@ -15,7 +13,7 @@ autorequire:
|
|
|
15
13
|
bindir: bin
|
|
16
14
|
cert_chain: []
|
|
17
15
|
|
|
18
|
-
date: 2012-12-
|
|
16
|
+
date: 2012-12-05 00:00:00 +01:00
|
|
19
17
|
default_executable:
|
|
20
18
|
dependencies:
|
|
21
19
|
- !ruby/object:Gem::Dependency
|
|
@@ -210,7 +208,6 @@ files:
|
|
|
210
208
|
- lib/cli/commands/services.rb
|
|
211
209
|
- lib/cli/commands/micro.rb
|
|
212
210
|
- lib/cli/commands/apps.rb
|
|
213
|
-
- lib/cli/file_helper.rb
|
|
214
211
|
- lib/cli/core_ext.rb
|
|
215
212
|
- lib/cli/services_helper.rb
|
|
216
213
|
- lib/cli/config.rb
|
|
@@ -222,6 +219,7 @@ files:
|
|
|
222
219
|
- lib/cli/runner.rb
|
|
223
220
|
- lib/cli/frameworks.rb
|
|
224
221
|
- lib/cli/tunnel_helper.rb
|
|
222
|
+
- lib/cli/file_helper.rb
|
|
225
223
|
- lib/vmc/const.rb
|
|
226
224
|
- lib/vmc/micro/switcher/darwin.rb
|
|
227
225
|
- lib/vmc/micro/switcher/linux.rb
|