washout_builder 0.8.8 → 0.8.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YjlhZmRhMTQzNzZiMDE0ZDk2OWMyNTBiODA0OTU5MTI1MmEyZTQwNg==
4
+ OTE2YzJiNTcwZjZhMTM3MmEzN2ZhN2RhYjFjNDRmZWE5ZWYyN2NmMQ==
5
5
  data.tar.gz: !binary |-
6
- OTFlMmFkNzhmZWYwOWU4ODQ3NjU2ZjAwYzc3YjA2MjI3ZWZkOGM1OQ==
6
+ NjkzOWY4ODYxNDA5ZjkzODBkOGY4ZTE0NWMyYmUyYjZlZGI0MWY3Yw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YTYzZDkxM2E0MDUxMjIzYTIxMTQ4NDgyYzVmMjk2YmMzMTJlN2JjZWVkMGVj
10
- ZDllM2E3NjY4NDIzMDBhM2QwNThhMGU4MzFhY2I4MTkxZWQxZGEzZmNmZjg1
11
- NjljYzhlOWY5MWE2ODg0MzEwNjNkM2ZlZDBlNzk4M2MwYzYyYzI=
9
+ OWY4N2QwMjg2ZjczODU0NDJkM2EzNmE4NzdkZDNiOTEwZDk1MzlmOTc1N2Nm
10
+ OGIyZGY3OTAwODVhZTg2YzMxMzRmNWY0NTk3MzA4NTgwZjU4MGRlYjVjZmNl
11
+ OTY1ODNlYWMzZWZmZmUwNzRhMjgwYzFlY2FjZDVmZTA2MTgzZTc=
12
12
  data.tar.gz: !binary |-
13
- ZjIxMzYyMjM0MmI3MzRkOGNhNmZjMmZlZmUzZTAzYzJjYTNmYzczNmE4Njg4
14
- Mjk2ZDk1ZjNmNzU5ODE5ZWZkNjEzMWU3MGRmNDQ2MDQzN2M3ZWYyODJhOTEx
15
- ODIwMTkzNzZiNTYxYWY0YWI5ZDE4MmIxMDRkMzQ3NDBjMTQ4OGQ=
13
+ OTA5OTJkNDc3ODZmMDdjZTZmODczNzE0YTdlMzQ0MjE0MDA2ZmQyYjlmMjRl
14
+ OTNhMDg0ZWI1ZTdlNTRhNWRlOTdhNDliMDllNzkzOGVhOWE4YjZjNzU5MWVh
15
+ MTY0NDgwNGU4MDVhNDQ5NzI4NjAxYTRlYWY0YTZkMjdiZDg4MzQ=
data/README.rdoc CHANGED
@@ -61,7 +61,7 @@ Please read {release details}[https://github.com/bogdanRada/washout_builder/rele
61
61
  The way soap_actions, or reusable types are defined or how the configuration is made using WashOut(https://github.com/inossidabile/wash_out) haven't changed
62
62
  You can still do everything that gem does .
63
63
 
64
- When specifying the <b>soap_action</b> you can also pass a <b>option for description</b> and a <b>list of exceptions(need to be instances as example)</b> that the method can raise at a certain moment.
64
+ When specifying the <b>soap_action</b> you can also pass a <b>option for description</b> and a <b>list of exceptions(need to be instances)</b> that the method can raise at a certain moment.
65
65
 
66
66
  The exception classes used <b>must inherit</b> from <tt>WashOut::SOAPError</tt>, which has by default a error code and a message as attributes but you can extend it by adding more accessible_attributes to your own custom class.
67
67
 
@@ -64,14 +64,14 @@ module WashoutBuilderHelper
64
64
  if !param_class.nil? && param_class.ancestors.include?(WashOut::Type) && !param.map[0].nil?
65
65
  descendant = WashOut::Param.parse_def(@soap_config, param_class.wash_out_param_map)[0]
66
66
  param.name = descendant.name
67
- param.map = descendant.map
67
+ param.map = descendant.map
68
68
  end
69
69
  end
70
70
 
71
71
  def get_nested_complex_types(param, defined)
72
72
  defined = [] if defined.blank?
73
73
  complex_class = get_complex_class_name(param, defined)
74
- fix_descendant_wash_out_type(param, complex_class)
74
+ fix_descendant_wash_out_type(param, complex_class)
75
75
  defined << {:class =>complex_class, :obj => param, :ancestors => param.classified? ? get_class_ancestors(param, complex_class, defined) : nil } unless complex_class.nil?
76
76
  if param.struct?
77
77
  c_names = []
@@ -94,7 +94,8 @@ module WashoutBuilderHelper
94
94
 
95
95
  def get_fault_types_names(map)
96
96
  defined = map.select{|operation, formats| !formats[:raises].blank? }
97
- defined.collect {|operation, formats| formats[:raises].is_a?(Array) ? formats[:raises] : [formats[:raises]] }.flatten.map{|item| item.class.to_s }.sort_by { |name| name.downcase }.uniq unless defined.blank?
97
+ defined = defined.collect {|operation, formats| formats[:raises].is_a?(Array) ? formats[:raises] : [formats[:raises]] }.flatten.select { |x| x.class.ancestors.include?(WashOut::SOAPError) } unless defined.blank?
98
+ defined.map{|item| item.class.to_s }.sort_by { |name| name.downcase }.uniq unless defined.blank?
98
99
  end
99
100
 
100
101
  def get_soap_action_names(map)
@@ -151,8 +152,7 @@ module WashoutBuilderHelper
151
152
  end
152
153
 
153
154
  def create_html_fault_type(xml, param)
154
- ancestor_class = defined?(WashOut::Dispatcher::SOAPError) ? WashOut::Dispatcher::SOAPError : WashOut::SOAPError
155
- if param.class.ancestors.include?(ancestor_class)
155
+ if param.class.ancestors.include?(WashOut::SOAPError)
156
156
  xml.h3 "#{param.class}"
157
157
  xml.a("name" => "#{param.class}") {}
158
158
  xml.ul("class" => "pre") {
@@ -287,13 +287,16 @@ module WashoutBuilderHelper
287
287
  unless formats[:raises].blank?
288
288
  faults = formats[:raises]
289
289
  faults = [formats[:raises]] if !faults.is_a?(Array)
290
-
291
- xml.p "Exceptions:"
292
- xml.ul {
293
- faults.each do |p|
294
- xml.li("class" => "pre"){ |y| y<< "<a href='##{p.class.to_s}'><span class='lightBlue'> #{p.class.to_s}</span></a>" }
295
- end
296
- }
290
+
291
+ faults = faults.select { |x| x.class.ancestors.include?(WashOut::SOAPError) }
292
+ unless faults.blank?
293
+ xml.p "Exceptions:"
294
+ xml.ul {
295
+ faults.each do |p|
296
+ xml.li("class" => "pre"){ |y| y<< "<a href='##{p.class.to_s}'><span class='lightBlue'> #{p.class.to_s}</span></a>" }
297
+ end
298
+ }
299
+ end
297
300
  end
298
301
  end
299
302
 
@@ -1,3 +1,3 @@
1
1
  module WashoutBuilder
2
- VERSION = "0.8.8"
2
+ VERSION = "0.8.9"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: washout_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.8
4
+ version: 0.8.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada