soap4r-ruby1.9 2.0.2 → 2.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/wsdl/soap/clientSkeltonCreator.rb +2 -2
- metadata +1 -1
@@ -33,7 +33,7 @@ class ClientSkeltonCreator
|
|
33
33
|
result = ""
|
34
34
|
if @modulepath
|
35
35
|
result << "\n"
|
36
|
-
result << @modulepath.
|
36
|
+
result << @modulepath.each.collect { |ele| "module #{ele}" }.join("; ")
|
37
37
|
result << "\n\n"
|
38
38
|
end
|
39
39
|
services.ports.each do |port|
|
@@ -42,7 +42,7 @@ class ClientSkeltonCreator
|
|
42
42
|
end
|
43
43
|
if @modulepath
|
44
44
|
result << "\n\n"
|
45
|
-
result << @modulepath.
|
45
|
+
result << @modulepath.each.collect { |ele| "end" }.join("; ")
|
46
46
|
result << "\n"
|
47
47
|
end
|
48
48
|
result
|