cnvrg 1.6.13 → 1.6.14
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/lib/cnvrg/project.rb +2 -6
- data/lib/cnvrg/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 464db61203d8184ba21a0b17054b08eac5c55f63cfead2484f4ef0b00d902f94
|
4
|
+
data.tar.gz: f56302c84bc02289d876699dd8ac4df31dba148f15beabd92533d8fca824bfdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4373ec0d34b3049a5a0da66dfaa71df71569770c5c6581cc49306f4041420d1c5e043502a89f139eb43d75b2585170a82990f6d13ab5e8acf8614284d904fd69
|
7
|
+
data.tar.gz: 4228f9fd6547d7d649771b10a13c72f2d1aa24ca6903b8ae828c1837cd3fa92080b41c0f927de34789d62ef89427998eb699787662bff4b38f94cb675b8b5104
|
data/lib/cnvrg/project.rb
CHANGED
@@ -429,13 +429,9 @@ module Cnvrg
|
|
429
429
|
end
|
430
430
|
list_ignore_new = list_ignore.map{|x| x.gsub("//","/")} rescue []
|
431
431
|
# list.each do |e|
|
432
|
-
project_root = Pathname.new(self.local_path)
|
433
432
|
Parallel.map(list, in_threads: IDXParallelThreads) do |e|
|
434
|
-
|
435
|
-
|
436
|
-
if not Cnvrg::Files.valid_file_name?(label)
|
437
|
-
raise StandardError.new("#{label} is not a valid file name")
|
438
|
-
end
|
433
|
+
label = e.sub(self.local_path + "/", "")
|
434
|
+
|
439
435
|
if list_ignore_new.include? label
|
440
436
|
next
|
441
437
|
end
|
data/lib/cnvrg/version.rb
CHANGED