iibee 0.1.21 → 0.1.22
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/lib/iibee/application.rb +1 -1
- data/lib/iibee/message_flow.rb +0 -6
- data/lib/iibee/service.rb +1 -1
- data/lib/iibee/version.rb +1 -1
- 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: bcfc0454328bc2ae21a40b9497a5518049a08f2b
|
|
4
|
+
data.tar.gz: 1e3c6b72933f3e82f9cbfc95ad63bdf081649aca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb578161faeff89366184727ef6b1db1186786c851148cfa71602a818610d34b6bd6a5b1bd45e458f570a19c5a0b3a7ae427907c692fae2d23c95b19d79d3760
|
|
7
|
+
data.tar.gz: 9a3164aa74fb74006b7939b5340461e3560414c23bf040ab5149664b4fa9b41be48f34d6711c644058b2705152f0695f7ee15fd346e58d175ae35067a604c064
|
data/lib/iibee/application.rb
CHANGED
|
@@ -66,7 +66,7 @@ module Iibee
|
|
|
66
66
|
response = Iibee::Connection.new(options: options).get("#{CONTEXT_PATH}/#{executionGroupName}/applications/#{name}/messageflows")
|
|
67
67
|
document = Oga.parse_xml(response.body)
|
|
68
68
|
document.xpath("//messageFlow']").each do |msg_flow|
|
|
69
|
-
msg_flows << Iibee::MessageFlow.new(msg_flow, '
|
|
69
|
+
msg_flows << Iibee::MessageFlow.new(msg_flow, 'applications', name, executionGroupName, options)
|
|
70
70
|
end
|
|
71
71
|
|
|
72
72
|
return msg_flows
|
data/lib/iibee/message_flow.rb
CHANGED
|
@@ -56,8 +56,6 @@ 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.get('type')
|
|
61
59
|
end
|
|
62
60
|
|
|
63
61
|
return msg_flows
|
|
@@ -69,14 +67,10 @@ module Iibee
|
|
|
69
67
|
|
|
70
68
|
def start
|
|
71
69
|
response = Iibee::Connection.new(options: options).put("#{CONTEXT_PATH}/#{executionGroupName}/#{parentType}/#{parentName}/messageflows/#{name}?action=start")
|
|
72
|
-
p "************************* START RESPONSE *********************************"
|
|
73
|
-
p response
|
|
74
70
|
end
|
|
75
71
|
|
|
76
72
|
def stop
|
|
77
73
|
response = Iibee::Connection.new(options: options).put("#{CONTEXT_PATH}/#{executionGroupName}/#{parentType}/#{parentName}/messageflows/#{name}?action=stop")
|
|
78
|
-
p "************************* STOP RESPONSE *********************************"
|
|
79
|
-
p response
|
|
80
74
|
end
|
|
81
75
|
end
|
|
82
76
|
end
|
data/lib/iibee/service.rb
CHANGED
|
@@ -65,7 +65,7 @@ module Iibee
|
|
|
65
65
|
response = Iibee::Connection.new(options: options).get("#{CONTEXT_PATH}/#{executionGroupName}/services/#{name}/messageflows")
|
|
66
66
|
document = Oga.parse_xml(response.body)
|
|
67
67
|
document.xpath("//messageFlow']").each do |msg_flow|
|
|
68
|
-
msg_flows << Iibee::MessageFlow.new(msg_flow, '
|
|
68
|
+
msg_flows << Iibee::MessageFlow.new(msg_flow, 'services', name, executionGroupName, options)
|
|
69
69
|
end
|
|
70
70
|
|
|
71
71
|
return msg_flows
|
data/lib/iibee/version.rb
CHANGED