libis-workflow 2.0.beta.25 → 2.0.beta.26
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/libis/workflow/task.rb +1 -1
- data/lib/libis/workflow/version.rb +1 -1
- data/libis-workflow.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f38564b780dda17bf3e9b9985ac768fe47d6eda5
|
4
|
+
data.tar.gz: 49d12b01cb4bf203e538ef1ce1eb656ab7267f4f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67a4e8d9bce4f62917acd19d97779c89dbfe499f43056667151d5fa890430bcf822ccabd55035dd1612eb59911610287cd2cb585d5bf0bf2fe237bc23147e0f1
|
7
|
+
data.tar.gz: 57ae40a1cd90165fc70d860c6279caeecfe5755997683103406666a43160cb5d19094c55428fd7f8da1b48b15c91ea2e45d0c7a948c5988ac9524ffa4ec5aed4
|
data/.gitignore
CHANGED
data/lib/libis/workflow/task.rb
CHANGED
@@ -19,7 +19,7 @@ module Libis
|
|
19
19
|
|
20
20
|
parameter quiet: false, description: 'Prevemt generating log output.'
|
21
21
|
parameter recursive: false, description: 'Run the task on all subitems recursively.'
|
22
|
-
parameter retry_count: 0, description: 'Number of times to retry the task.'
|
22
|
+
parameter retry_count: 0, description: 'Number of times to retry the task if waiting for another process.'
|
23
23
|
parameter retry_interval: 10, description: 'Number of seconds to wait between retries.'
|
24
24
|
|
25
25
|
def self.task_classes
|
@@ -2,6 +2,6 @@
|
|
2
2
|
|
3
3
|
module Libis
|
4
4
|
module Workflow
|
5
|
-
VERSION = '2.0.beta.
|
5
|
+
VERSION = '2.0.beta.26' unless const_defined? :VERSION # the guard is against a redefinition warning that happens on Travis
|
6
6
|
end
|
7
7
|
end
|
data/libis-workflow.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libis-workflow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.beta.
|
4
|
+
version: 2.0.beta.26
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kris Dekeyser
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-01-
|
11
|
+
date: 2016-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -100,14 +100,14 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
103
|
+
version: '4.0'
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: '
|
110
|
+
version: '4.0'
|
111
111
|
description: A simple framework to build custom task/workflow solutions.
|
112
112
|
email: kris.dekeyser@libis.be
|
113
113
|
executables: []
|
@@ -179,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
179
179
|
version: 1.3.1
|
180
180
|
requirements: []
|
181
181
|
rubyforge_project:
|
182
|
-
rubygems_version: 2.
|
182
|
+
rubygems_version: 2.4.8
|
183
183
|
signing_key:
|
184
184
|
specification_version: 4
|
185
185
|
summary: LIBIS Workflow framework.
|