iibee 0.1.21 → 0.1.22

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e7f596eb7c0a09261be5514cc257f3a7e7561efe
4
- data.tar.gz: ece1ae0b3e2c5f2286c50e612b2c0cf2fead14f2
3
+ metadata.gz: bcfc0454328bc2ae21a40b9497a5518049a08f2b
4
+ data.tar.gz: 1e3c6b72933f3e82f9cbfc95ad63bdf081649aca
5
5
  SHA512:
6
- metadata.gz: e24454cb917f07ab0604c4e03029e322ba5e7726ef88217646163391ad868f9f706be0ac6684ea2bd2638f0f492d418d20946246fe04c0e5e4caa8a9dc10c832
7
- data.tar.gz: 19bdd01a32eb81dece99a654d3d9666b087ba93b4bfe14a6cfe8774cad3eb4510fcd446902c48d2d852003b7ab355e1d7fb2b27ad6308995146d31055501191d
6
+ metadata.gz: fb578161faeff89366184727ef6b1db1186786c851148cfa71602a818610d34b6bd6a5b1bd45e458f570a19c5a0b3a7ae427907c692fae2d23c95b19d79d3760
7
+ data.tar.gz: 9a3164aa74fb74006b7939b5340461e3560414c23bf040ab5149664b4fa9b41be48f34d6711c644058b2705152f0695f7ee15fd346e58d175ae35067a604c064
@@ -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, 'application', name, executionGroupName, options)
69
+ msg_flows << Iibee::MessageFlow.new(msg_flow, 'applications', name, executionGroupName, options)
70
70
  end
71
71
 
72
72
  return msg_flows
@@ -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, 'service', name, executionGroupName, options)
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
@@ -1,3 +1,3 @@
1
1
  module Iibee
2
- VERSION = "0.1.21"
2
+ VERSION = "0.1.22"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iibee
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.21
4
+ version: 0.1.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - akil