Unstructured text resource.
Returns an Array of Strings for this TXT record.
# File rake/lib/resolv.rb, line 1893 def initialize(first_string, *rest_strings) @strings = [first_string, *rest_strings] end
Returns the first string from strings
.
# File rake/lib/resolv.rb, line 1905 def data @strings[0] end