class YARD::Docstring

def tag(name)

Returns:
  • (Tags::Tag) - the first tag in the list of {#tags}

Parameters:
  • name (#to_s) -- the tag name to return data for
def tag(name)
  tags.find {|tag| tag.tag_name.to_s == name.to_s }
end