]> git.openstreetmap.org Git - rails.git/blobdiff - lib/quova.rb
Update html5shiv to 3.7.3
[rails.git] / lib / quova.rb
index 6cfc2ff92f3a7a16a40108c5385d85a0bab8d4b1..b09f8acea51a72f51b9b68fc26baf083b4d9ffe2 100644 (file)
@@ -34,13 +34,13 @@ module Quova
 
   ##
   # Create SOAP endpoint
-  @@soap = SOAP::WSDLDriverFactory.new(WSDL_URL).create_rpc_driver
-  @@soap.options["protocol.http.basic_auth"] << [WSDL_URL, WSDL_USER, WSDL_PASS]
+  @soap = SOAP::WSDLDriverFactory.new(WSDL_URL).create_rpc_driver
+  @soap.options["protocol.http.basic_auth"] << [WSDL_URL, WSDL_USER, WSDL_PASS]
 
   ##
   # Accessor for SOAP endpoint
   def self.soap
-    @@soap
+    @soap
   end
 
   ##