autoflow 0.5.0 → 0.5.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.
- data/bin/AutoFlow +1 -2
- data/lib/autoflow/queue_manager.rb +1 -1
- data/lib/autoflow/version.rb +1 -1
- metadata +2 -2
data/bin/AutoFlow
CHANGED
|
@@ -21,7 +21,7 @@ def get_templates(string_template)
|
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
def get_repositories
|
|
24
|
-
directories = []
|
|
24
|
+
directories = []
|
|
25
25
|
directories = ENV['WORKFLOW_REPOSITORY'].split(':') if !ENV['WORKFLOW_REPOSITORY'].nil?
|
|
26
26
|
return directories
|
|
27
27
|
end
|
|
@@ -195,7 +195,6 @@ optparse.parse!
|
|
|
195
195
|
#################################################################################################
|
|
196
196
|
# MAIN
|
|
197
197
|
#################################################################################################
|
|
198
|
-
|
|
199
198
|
# List templates
|
|
200
199
|
templates_rep_names = list_repository_templates
|
|
201
200
|
if !options[:list].nil?
|
|
@@ -127,7 +127,7 @@ class QueueManager
|
|
|
127
127
|
ar_dependencies = get_dependencies(job, id)
|
|
128
128
|
buffered_jobs.each do |id_buff_job, buff_job|
|
|
129
129
|
write_job(buff_job, sh_name)
|
|
130
|
-
ar_dependencies += get_dependencies(
|
|
130
|
+
ar_dependencies += get_dependencies(buff_job, id_buff_job)
|
|
131
131
|
buff_job.attrib[:exec_folder] = job.attrib[:exec_folder]
|
|
132
132
|
end
|
|
133
133
|
ar_dependencies.uniq!
|
data/lib/autoflow/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autoflow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-11-
|
|
12
|
+
date: 2014-11-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: net-ssh
|