rbbt-util 5.28.0 → 5.28.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49e2972467a5efda29a81c562f96a69f190415a9226c4e8e9e5e776bc1e44f33
|
|
4
|
+
data.tar.gz: 047125157bbeb36260736630c091dda1243a7856f88b01553c6ecec5177c1795
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ddd94924f8cdbbe8b9219d64a8261e484e0f7c1c34ee6b4b6a745e9dca2e9f51524f6d1d45471cd2ce229661500fa8052515ce5835fb0061f1ef07021b5eb37f
|
|
7
|
+
data.tar.gz: c5f52161994f7d6de86aba05544f05dfbe1fff765c587220adca9a917c6f7ebe410cfeae601996eaa790f9587468508a8750618a5c126b1ad5e07238bc4e34e1
|
data/lib/rbbt/resource/path.rb
CHANGED
|
@@ -76,7 +76,7 @@ module Path
|
|
|
76
76
|
return [] unless self.exists?
|
|
77
77
|
found = self.find
|
|
78
78
|
exp = File.join(found, pattern)
|
|
79
|
-
paths = Dir.glob(exp).collect{|f|
|
|
79
|
+
paths = Dir.glob(exp).collect{|f| self.annotate(f) }
|
|
80
80
|
|
|
81
81
|
paths.each do |p|
|
|
82
82
|
p.original = File.join(found.original, p.sub(/^#{found}/, ''))
|
|
@@ -340,6 +340,11 @@ class RemoteStep < Step
|
|
|
340
340
|
@inputs = new_inputs
|
|
341
341
|
@info = nil
|
|
342
342
|
end
|
|
343
|
+
|
|
344
|
+
def init_info(*args)
|
|
345
|
+
i = {:status => :waiting, :pid => Process.pid, :path => path}
|
|
346
|
+
i[:dependencies] = dependencies.collect{|dep| [dep.task_name, dep.name, dep.path]} if dependencies
|
|
347
|
+
end
|
|
343
348
|
end
|
|
344
349
|
|
|
345
350
|
require 'rbbt/workflow/remote_workflow/remote_step/rest'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbbt-util
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.28.
|
|
4
|
+
version: 5.28.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Miguel Vazquez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-07-
|
|
11
|
+
date: 2020-07-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|