simplews 1.0.1 → 1.0.2
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.
- data/History.txt +6 -0
- data/lib/simplews/version.rb +1 -1
- data/lib/simplews.rb +1 -1
- metadata +2 -2
data/History.txt
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
|
+
== 1.0.2 2008-10-28
|
|
2
|
+
|
|
3
|
+
* 1 bug fix:
|
|
4
|
+
* In using the easy client driver creation
|
|
5
|
+
|
|
1
6
|
== 1.0.1 2008-10-27
|
|
2
7
|
|
|
3
8
|
* 1 major enhancement:
|
|
4
9
|
* Easy creation of client driver. Connects to a url and retrieves the WSDL
|
|
5
10
|
and uses it to generate driver
|
|
6
11
|
|
|
12
|
+
|
|
7
13
|
== 1.0.0 2008-10-10
|
|
8
14
|
|
|
9
15
|
* 1 major enhancement:
|
data/lib/simplews/version.rb
CHANGED
data/lib/simplews.rb
CHANGED
|
@@ -18,7 +18,7 @@ class SimpleWS < SOAP::RPC::StandaloneServer
|
|
|
18
18
|
tmp = File.open("/tmp/simpleWS.wsdl",'w')
|
|
19
19
|
tmp.write SimpleWS::get_wsdl(url, name)
|
|
20
20
|
tmp.close
|
|
21
|
-
driver = SOAP::WSDLDriverFactory.new( "
|
|
21
|
+
driver = SOAP::WSDLDriverFactory.new( "/tmp/simpleWS.wsdl" ).create_rpc_driver
|
|
22
22
|
FileUtils.rm "/tmp/simpleWS.wsdl"
|
|
23
23
|
|
|
24
24
|
driver
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simplews
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Miguel Vazquez
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-10-
|
|
12
|
+
date: 2008-10-28 00:00:00 +01:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|