cpee 2.1.69 → 2.1.70
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: 41f311fdc70aec9386640a09a7331abdd3279d08e532de6a74f019a89d413cd8
|
|
4
|
+
data.tar.gz: 479b16db900e1270c2124d5b413d3623813bc4b37d8727a8bbce397ea1207953
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c6f6a22e4e5d76474b160f780b99a4f4e6355259174cf31f99704512e88863dcc0ee9f17a3c037a0fc44a98730ae8f1f2eff8a749de774eb87f409ecb286b11
|
|
7
|
+
data.tar.gz: 7b70f1adc92d339b829ef8285fafb7836946d73c6b51e6cf16f0a278ba84cae0a6191897dcdbf3caf61bcd2960643da2a7cbb1b36260ef19a29639659ea3f25b
|
data/cpee.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "cpee"
|
|
3
|
-
s.version = "2.1.
|
|
3
|
+
s.version = "2.1.70"
|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
|
5
5
|
s.license = "LGPL-3.0-or-later"
|
|
6
6
|
s.summary = "The cloud process execution engine (cpee.org). If you just need workflow execution, without a rest service exposing it, then use WEEL."
|
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
|
|
|
22
22
|
s.homepage = 'http://cpee.org/'
|
|
23
23
|
|
|
24
24
|
s.add_runtime_dependency 'riddl', '~> 1.0'
|
|
25
|
-
s.add_runtime_dependency 'weel', '~> 1.99', '>= 1.99.
|
|
25
|
+
s.add_runtime_dependency 'weel', '~> 1.99', '>= 1.99.126'
|
|
26
26
|
s.add_runtime_dependency 'highline', '~> 2.0'
|
|
27
27
|
s.add_runtime_dependency 'redis', '~> 5.0'
|
|
28
28
|
s.add_runtime_dependency 'rubyzip', '~>2'
|
|
@@ -38,7 +38,6 @@ class ConnectionWrapper < WEEL::ConnectionWrapperBase
|
|
|
38
38
|
# https://github.com/rails/rails/pull/45818/commits/3beb2aff3be712e44c34a588fbf35b79c0246ca5
|
|
39
39
|
puts err.message
|
|
40
40
|
puts err.backtrace
|
|
41
|
-
|
|
42
41
|
controller = arguments[0]
|
|
43
42
|
mess = err.backtrace ? err.backtrace[0].gsub(/([\w -_]+):(\d+):in.*/,'\\1, Line \2: ') : ''
|
|
44
43
|
mess += err.message
|
|
@@ -435,7 +435,7 @@
|
|
|
435
435
|
<xsl:value-of select="$myspace+$myspacemultiplier"/>
|
|
436
436
|
</xsl:with-param>
|
|
437
437
|
</xsl:call-template>
|
|
438
|
-
<xsl:text>parallel_branch
|
|
438
|
+
<xsl:text>parallel_branch do |local|</xsl:text>
|
|
439
439
|
<xsl:call-template name="print-newline"/>
|
|
440
440
|
<xsl:apply-templates>
|
|
441
441
|
<xsl:with-param name="myspace">
|
|
@@ -36,8 +36,11 @@ class ConnectionWrapper < WEEL::ConnectionWrapperBase
|
|
|
36
36
|
def self::inform_syntax_error(arguments,err,code)# {{{
|
|
37
37
|
# TODO extract spot (code) where error happened for better error handling (ruby 3.1 only)
|
|
38
38
|
# https://github.com/rails/rails/pull/45818/commits/3beb2aff3be712e44c34a588fbf35b79c0246ca5
|
|
39
|
+
p err
|
|
40
|
+
p err.message
|
|
41
|
+
p err.backtrace
|
|
39
42
|
controller = arguments[0]
|
|
40
|
-
controller.notify("executionhandler/error", :message => err.backtrace[0].match(/(.*?), Line (\d+):\s(.*)/)[
|
|
43
|
+
controller.notify("executionhandler/error", :message => err.backtrace[0].match(/(.*?)(, Line |:)(\d+):\s(.*)/)[4] + err.message, :line => err.backtrace[0].match(/(.*?)(, Line |:)(\d+):/)[3], :where => err.backtrace[0].match(/(.*?)(, Line |:)(\d+):/)[1])
|
|
41
44
|
#mess = err.backtrace ? err.backtrace[0].gsub(/([\w -_]+):(\d+):in.*/,'\\1, Line \2: ') : ''
|
|
42
45
|
#mess += err.message
|
|
43
46
|
#controller.notify("description/error", :message => err.message, :line => err.backtrace[0].match(/(.*?):(\d+):/)[2], :where => err.backtrace[0].match(/(.*?):(\d+):/)[1])
|
|
@@ -435,7 +435,7 @@
|
|
|
435
435
|
<xsl:value-of select="$myspace+$myspacemultiplier"/>
|
|
436
436
|
</xsl:with-param>
|
|
437
437
|
</xsl:call-template>
|
|
438
|
-
<xsl:text>parallel_branch
|
|
438
|
+
<xsl:text>parallel_branch do |local|</xsl:text>
|
|
439
439
|
<xsl:call-template name="print-newline"/>
|
|
440
440
|
<xsl:apply-templates>
|
|
441
441
|
<xsl:with-param name="myspace">
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cpee
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.70
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juergen eTM Mangler
|
|
@@ -35,7 +35,7 @@ dependencies:
|
|
|
35
35
|
version: '1.99'
|
|
36
36
|
- - ">="
|
|
37
37
|
- !ruby/object:Gem::Version
|
|
38
|
-
version: 1.99.
|
|
38
|
+
version: 1.99.126
|
|
39
39
|
type: :runtime
|
|
40
40
|
prerelease: false
|
|
41
41
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -45,7 +45,7 @@ dependencies:
|
|
|
45
45
|
version: '1.99'
|
|
46
46
|
- - ">="
|
|
47
47
|
- !ruby/object:Gem::Version
|
|
48
|
-
version: 1.99.
|
|
48
|
+
version: 1.99.126
|
|
49
49
|
- !ruby/object:Gem::Dependency
|
|
50
50
|
name: highline
|
|
51
51
|
requirement: !ruby/object:Gem::Requirement
|