libis-workflow 2.1.16 → 2.1.17
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/CHANGELOG.md +8 -0
- data/Makefile +21 -0
- data/lib/libis/workflow/task.rb +1 -1
- data/lib/libis/workflow/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b7fc5d45cf7f3b2e239992dbb91c791fa67b7a73bdf4fafaf1991fca478af977
|
|
4
|
+
data.tar.gz: ba6e5e9d0bdb6802f2b2014bb17883a03aca5534ebed59462ed256ce16d58b38
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5856f99fa6378ab2e93b342e797d64ca1629bd1e4b2e801d8a22a7c99224574b6ee710d0589cbd1e1a9911a223ed464f35523515fed42bcdbf941b990e2ca7bf
|
|
7
|
+
data.tar.gz: '058903de0b0b113f797f35696b3ed080dff77c746de2db0c74a5513e7ef2f5dae067fc8945486d627589079a089fabb4b96c1a22ff25845a8747bde9d85f9f0a'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v2.1.17](https://github.com/libis/workflow/tree/v2.1.17) (25/10/2024)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/libis/workflow/compare/v2.1.16...v2.1.17)
|
|
6
|
+
|
|
7
|
+
## [v2.1.16](https://github.com/libis/workflow/tree/v2.1.16) (24/04/2024)
|
|
8
|
+
|
|
9
|
+
[Full Changelog](https://github.com/libis/workflow/compare/v2.1.15...v2.1.16)
|
|
10
|
+
|
|
3
11
|
## [v2.1.15](https://github.com/libis/workflow/tree/v2.1.15) (27/11/2023)
|
|
4
12
|
|
|
5
13
|
[Full Changelog](https://github.com/libis/workflow/compare/v2.1.14...v2.1.15)
|
data/Makefile
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
-include .env
|
|
2
|
+
export
|
|
3
|
+
|
|
4
|
+
VERSION=$(shell ruby -e "require_relative 'lib/libis/workflow/version'; puts Libis::Workflow::VERSION")
|
|
5
|
+
|
|
6
|
+
.SILENT:
|
|
7
|
+
|
|
8
|
+
.PHONY: release
|
|
9
|
+
|
|
10
|
+
changelog:
|
|
11
|
+
rake changelog
|
|
12
|
+
git commit -a -m "Changelog update" || true
|
|
13
|
+
git push
|
|
14
|
+
|
|
15
|
+
version_bump:
|
|
16
|
+
echo "Gem version: v$(VERSION)"
|
|
17
|
+
git commit -am "Version bump: v$(VERSION)" || true
|
|
18
|
+
git tag --force "v$(VERSION)"
|
|
19
|
+
git push --tags
|
|
20
|
+
|
|
21
|
+
release: version_bump changelog
|
data/lib/libis/workflow/task.rb
CHANGED
|
@@ -253,7 +253,7 @@ module Libis
|
|
|
253
253
|
results = Hash.new(0)
|
|
254
254
|
self.tasks.each { |subtask| results[item.status(subtask.namepath)] += 1 }
|
|
255
255
|
[:FAILED, :ASYNC_WAIT, :ASYNC_HALT].each { |status| return status if results[status] > 0 }
|
|
256
|
-
return :
|
|
256
|
+
return :STARTED if results[:STARTED] > 0
|
|
257
257
|
:DONE
|
|
258
258
|
end
|
|
259
259
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module Libis
|
|
2
2
|
module Workflow
|
|
3
|
-
VERSION = '2.1.
|
|
3
|
+
VERSION = '2.1.17' unless const_defined? :VERSION # the guard is against a redefinition warning that happens on Travis
|
|
4
4
|
end
|
|
5
5
|
end
|
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.1.
|
|
4
|
+
version: 2.1.17
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kris Dekeyser
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-10-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: libis-tools
|
|
@@ -107,6 +107,7 @@ files:
|
|
|
107
107
|
- CHANGELOG.md
|
|
108
108
|
- Gemfile
|
|
109
109
|
- LICENSE
|
|
110
|
+
- Makefile
|
|
110
111
|
- README.md
|
|
111
112
|
- Rakefile
|
|
112
113
|
- lib/libis-workflow.rb
|
|
@@ -150,7 +151,7 @@ homepage: https://github.com/libis/workflow
|
|
|
150
151
|
licenses:
|
|
151
152
|
- MIT
|
|
152
153
|
metadata: {}
|
|
153
|
-
post_install_message:
|
|
154
|
+
post_install_message:
|
|
154
155
|
rdoc_options: []
|
|
155
156
|
require_paths:
|
|
156
157
|
- lib
|
|
@@ -165,8 +166,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
165
166
|
- !ruby/object:Gem::Version
|
|
166
167
|
version: '0'
|
|
167
168
|
requirements: []
|
|
168
|
-
rubygems_version: 3.
|
|
169
|
-
signing_key:
|
|
169
|
+
rubygems_version: 3.5.22
|
|
170
|
+
signing_key:
|
|
170
171
|
specification_version: 4
|
|
171
172
|
summary: LIBIS Workflow framework.
|
|
172
173
|
test_files:
|