class OoxmlParser::Author
Single author `author`
Attributes
name[R]
Public Instance Methods
parse(node)
click to toggle source
Parse Author
object @param node [Nokogiri::XML:Element] node to parse @return [Author] result of parsing
# File lib/ooxml_parser/xlsx_parser/xlsx_data/view_model/workbook/worksheet/excel_comments/author.rb, line 11 def parse(node) @name = node.text self end