ultrasoap 0.1.0 → 0.1.1

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: 42be934e7d4210f7f31440a0861662c26caec287
4
- data.tar.gz: 01dc2abf4e427ed01ab2fe42c41a1bf704f9f55c
3
+ metadata.gz: 8e94372ad75126d76e9ebfe1a4bc6cedf0d87b9e
4
+ data.tar.gz: c8280730fb842fc7409c458fb01d502dcfbb7b56
5
5
  SHA512:
6
- metadata.gz: d1b72386af2e239a697d10bbc3e423dc2003e608e60e5083aca328f51285bb91c8e44a40679adfb80a5aea1ddcbe4cd7a97976de0859943fc732b42aadec4c01
7
- data.tar.gz: a23b6921433a7e1c46d7ed1531a455c7f3e616ca2c9c3d0f7fda9aa0bffef68220c49717c417a2154abd01b715fceb05b2bbf423c184ac6d971835aac21c6b87
6
+ metadata.gz: 674e21baeedf11ef160ff0597f94d25eb32ecd26a243e06f7f24433f060b22d574f79cf08f51147e5ed79a934949765457c27abae0e257aaaec6ada67ae7ba88
7
+ data.tar.gz: 924d527834559a1dce1610807662d4700e00bbc6a7acc436425738097b21e86a1867371d1d5667d932c55f1407447b0745db19bc7cf5e85817390b9e2bc5ddf2
data/README.md CHANGED
@@ -3,8 +3,11 @@ ultrasoap-ruby
3
3
 
4
4
  Ruby gem to interact with UltraDNS SOAP API.
5
5
  This gem is still in a very early version, so don't expect it to do miracles.
6
- It just works, basically.
7
- I plan to extend it, in the future, adding wrappers for the most important UltraDNS functions.
6
+ Code must also be polished and refactored, but it's a continuous work in progress, so check out for the (currently frequent) updates.
7
+
8
+ It just works, basically. Well, at least since v0.1.0: earlier versions, in fact, had some dependency problem. Shame on me and my inexperience with gems. :(
9
+
10
+ I plan to extend and improve this gem in the future, e.g. adding wrappers for the most important UltraDNS functions.
8
11
 
9
12
  Install
10
13
  -------
data/lib/client.rb CHANGED
@@ -5,7 +5,6 @@ module UltraSOAP
5
5
 
6
6
  class Client
7
7
 
8
- # Class variables
9
8
  @logger
10
9
 
11
10
  @logdest = './ultrasoap.log'
@@ -17,6 +16,7 @@ module UltraSOAP
17
16
  @transaction_id = nil
18
17
  @use_transactions = false
19
18
 
19
+ # Class variables
20
20
  class << self
21
21
  attr_accessor :logdest
22
22
  attr_accessor :logging
@@ -25,12 +25,12 @@ module UltraSOAP
25
25
  attr_accessor :test_wsdl
26
26
  attr_accessor :prod_wsdl
27
27
  attr_accessor :environment
28
- attr_accessor :use_transactions
29
28
  end
30
29
 
31
30
  # Instance variables
32
31
  attr_accessor :logging
33
32
  attr_accessor :loglevel
33
+ attr_accessor :use_transactions
34
34
 
35
35
  # Constructor
36
36
  def initialize()
@@ -1,8 +1,8 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'ultrasoap'
3
- s.version = '0.1.0'
3
+ s.version = '0.1.1'
4
4
  s.summary = "Simple Ruby client library for UltraDNS SOAP API"
5
- s.description = "Connect to Neustar's UltraDNS SOAP API. FKA ultrasoap-ruby"
5
+ s.description = "Connect to Neustar's UltraDNS SOAP API.\nFKA ultrasoap-ruby.\nAny feedback or contribution is appreciated."
6
6
  s.authors = ["Gabriel Sambarino"]
7
7
  s.email = 'gabriel.sambarino@gmail.com'
8
8
  s.files = `git ls-files`.split("\n")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultrasoap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriel Sambarino
@@ -52,7 +52,10 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '2.10'
55
- description: Connect to Neustar's UltraDNS SOAP API. FKA ultrasoap-ruby
55
+ description: |-
56
+ Connect to Neustar's UltraDNS SOAP API.
57
+ FKA ultrasoap-ruby.
58
+ Any feedback or contribution is appreciated.
56
59
  email: gabriel.sambarino@gmail.com
57
60
  executables: []
58
61
  extensions: []