Class: EPP::Domain::Check
Instance Attribute Summary
Attributes inherited from Command
#namespaces
Instance Method Summary
collapse
Methods inherited from Command
#set_namespaces
Methods included from XMLHelpers
#as_xml, #epp_namespace, #epp_node, #xml_document, #xml_namespace, #xml_node
Constructor Details
#initialize(*names) ⇒ Check
6
7
8
|
# File 'lib/epp-client/domain/check.rb', line 6
def initialize(*names)
@names = names.flatten
end
|
Instance Method Details
#name ⇒ Object
10
11
12
|
# File 'lib/epp-client/domain/check.rb', line 10
def name
'check'
end
|
#to_xml ⇒ Object
14
15
16
17
18
19
20
|
# File 'lib/epp-client/domain/check.rb', line 14
def to_xml
node = super
@names.each do |name|
node << domain_node('name', name)
end
node
end
|