wlvalidate 0.3.3 → 0.3.4
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/lib/wlvalidate.rb +2 -1
- metadata +1 -1
data/lib/wlvalidate.rb
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
| DKIM1 | PASS/FAIL | (none) | CNAME/TXT || Done | Hash | Yes |
|
|
12
12
|
| DKIM2 | PASS/FAIL | (none) | CNAME/TXT || Done | Hash | Yes |
|
|
13
13
|
| MX | INFO | MX Hostname | Priority || Done | Array of hashes | |
|
|
14
|
+
| INFO | INFO | (non-std format) | (none) || Done | Hash | (n/a) |
|
|
14
15
|
+-------+-----------+-------------------+-----------++--------+-----------------+----------------------+
|
|
15
16
|
| ALL | (multi) | (multi) | (multi) || Done | Array of hashes | (n/a) |
|
|
16
17
|
+-------+-----------+-------------------+-----------++--------+-----------------+----------------------+
|
|
@@ -54,7 +55,7 @@ module WLValidate
|
|
|
54
55
|
|
|
55
56
|
def get_info()
|
|
56
57
|
hashReturn = Hash.new
|
|
57
|
-
hashReturn = { "type" => "INFO", "dns_server" => @dns_server, "dns_type" => @dns_type, "
|
|
58
|
+
hashReturn = { "type" => "INFO", "dns_server" => @dns_server, "dns_type" => @dns_type, "dns_updated" => @dns_updated }
|
|
58
59
|
return hashReturn
|
|
59
60
|
end
|
|
60
61
|
|