ultrasoap 0.1.5 → 0.1.6

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: 84e37d34cdd9c7aa26fbd26f81a3c0da40b8d020
4
- data.tar.gz: 453357f755c4e0c48c49b44a18410f7681d5b235
3
+ metadata.gz: f7ea68817902f7e1b7b397870165fee8a138a1e0
4
+ data.tar.gz: d62d03654dff6a6fb2f736ba7bc4126781d76f78
5
5
  SHA512:
6
- metadata.gz: 11eee2549e4d6cec749294d17142b6db73c2c08a19a82f294dc1a76a6e1fef48dbdf43238750772819bc08b80561e6161cb1ca11e842a300909e2abf42318229
7
- data.tar.gz: a47572acf94f2101b822117c19cd812fbfa8288528713f5eb1f0b7fecb657bd6f34ea5cb89312fde388366c5773c8df28493356665b5b14cbebd36b90a85fb9d
6
+ metadata.gz: bcafcead8c8d3d5df339978eca5d10294c803208b6d0a69fd4dbdfea6d96f32a0c938405f06701063146dfe2d43dddff89069b6f8e9c974a8c11b99830b02a6a
7
+ data.tar.gz: 4c89a3edfc2695b6e91e90c98a4cabd57820469ad10eda89f7109db116ccd25eaa19c08ea5e988906ad9cab37b9a26ac89e2d5d35f273792d26cb776a78ec5a0
data/README.md CHANGED
@@ -119,6 +119,11 @@ For a detailed description on response formats, take a look at the NUS API XML S
119
119
  The current version supports the following functions:
120
120
 
121
121
  ```ruby
122
+
123
+ # Returns the current state of the Neustar network
124
+ # Return values: 'Good' if everything's ok, other values otherwise, nil in case of exceptions
125
+ network_status()
126
+
122
127
  # Enumerate all Load Balancing pools for the required zone
123
128
  # Parameters:
124
129
  # - zone => the name of the zone, *including* the trailing dot
@@ -37,7 +37,7 @@ module UltraSOAP
37
37
  # Constructor
38
38
  def initialize()
39
39
  # Exits if username or password aren't specified.
40
- return nil unless !(Settings.username.nil? or Settings.password.nil?)
40
+ return nil unless !(Settings['username'].nil? or Settings['password'].nil?)
41
41
 
42
42
  username = Settings.username
43
43
  password = Settings.password
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'ultrasoap'
3
- s.version = '0.1.5'
3
+ s.version = '0.1.6'
4
4
  s.summary = "Simple Ruby client library for UltraDNS SOAP API"
5
5
  s.description = "Connect to Neustar's UltraDNS SOAP API. FKA ultrasoap-ruby. Any feedback or contribution is appreciated."
6
6
  s.authors = ["Gabriel Sambarino"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ultrasoap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriel Sambarino
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-24 00:00:00.000000000 Z
11
+ date: 2014-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: savon