492 493 494 495 496 497 498 499 500 501
# File 'lib/dnsruby/resource/TSIG.rb', line 492 def name=(n) if (n.instance_of?String) n = Name.create(n) end if (!n.absolute?) @name = Name.create(n.to_s + ".") else @name = n end end