cpee 1.3.169 → 1.3.170
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/cpee.gemspec +1 -1
- data/server/handlerwrappers/default.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0dba11764931c4f60b77284ee38ec20274ccc199
|
4
|
+
data.tar.gz: e005b13f28cc12435b795b11eb097a9595df0710
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4172bfbf116e97cb811eef1d15118b6163db1bb55f8231917594ad8d60324d8ff4e9da48ada2f68527270f7da41a4e00f1ae455c4874ef7e1f48164670240f1d
|
7
|
+
data.tar.gz: 223a8bc2ea3f5f3bb5537ce648282ea1dfc62e6d2c6dca99f46a42fb90bbdc69a426292490c2ba683d68423408d70091cc404123d03f6acc8534bb34c209132f
|
data/cpee.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "cpee"
|
3
|
-
s.version = "1.3.
|
3
|
+
s.version = "1.3.170"
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.license = "LGPL-3"
|
6
6
|
s.summary = "Preliminary release of cloud process execution engine (cpee). If you just need workflow execution, without a rest/xmpp service exposing it, then use WEEL"
|
@@ -56,6 +56,8 @@ class DefaultHandlerWrapper < WEEL::HandlerWrapperBase
|
|
56
56
|
result = JSON::parse(result[0].value.read)
|
57
57
|
elsif result[0].mimetype == 'application/xml' || result[0].mimetype == 'text/xml'
|
58
58
|
result = XML::Smart::string(result[0].value.read)
|
59
|
+
elsif result[0].mimetype == 'text/plain'
|
60
|
+
result = result[0].value.read
|
59
61
|
else
|
60
62
|
result = result[0]
|
61
63
|
end
|