iibee 0.1.19 → 0.1.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/iibee/message_flow.rb +6 -0
- data/lib/iibee/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3c521e03320469a104b23b9d59501e69dc4d51c
|
4
|
+
data.tar.gz: de35ed21e513ad6afcd9e33fa6284e5f9cea7f53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1098610701ee6796b9a3222561f29f0d242702f8fa72dcc675059b94c32d50c1a32595884fc71ea943ca8bc4774c16e00e0c7b3f711ad96eccf12396dc6ce59
|
7
|
+
data.tar.gz: 80b9f8c66b7421211da8709fca17cca2d89dd799f2d2e750fe3a352ccad08bb0c8312322237ba5621de7ad399f6820ef49e36268515faeb2374c0437475752d7
|
data/lib/iibee/message_flow.rb
CHANGED
@@ -56,6 +56,8 @@ module Iibee
|
|
56
56
|
|
57
57
|
document.xpath("//messageflow[@name='#{name}']").each do |msg_flow|
|
58
58
|
msg_flows << new(msg_flow, msg_flow.parent.parent.parent.get('type'), msg_flow.parent.parent.get('name'), msg_flow.parent.parent.parent.parent.get('name'), options)
|
59
|
+
p "******************** PARENT ***********************"
|
60
|
+
p msg_flow.parent.parent.parent.parent.get('type')
|
59
61
|
end
|
60
62
|
|
61
63
|
return msg_flows
|
@@ -67,10 +69,14 @@ module Iibee
|
|
67
69
|
|
68
70
|
def start
|
69
71
|
response = Iibee::Connection.new(options: options).put("#{CONTEXT_PATH}/#{executionGroupName}/#{parentType}/#{parentName}/messageflows/#{name}?action=start")
|
72
|
+
p "************************* START RESPONSE *********************************"
|
73
|
+
p response
|
70
74
|
end
|
71
75
|
|
72
76
|
def stop
|
73
77
|
response = Iibee::Connection.new(options: options).put("#{CONTEXT_PATH}/#{executionGroupName}/#{parentType}/#{parentName}/messageflows/#{name}?action=stop")
|
78
|
+
p "************************* STOP RESPONSE *********************************"
|
79
|
+
p response
|
74
80
|
end
|
75
81
|
end
|
76
82
|
end
|
data/lib/iibee/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iibee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.20
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- akil
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-09-
|
11
|
+
date: 2015-09-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|