# File lib/spreadsheet/excel/writer/worksheet.rb, line 109 def strings @worksheet.inject [] do |memo, row| strings = row.select do |cell| cell.is_a?(String) && !cell.empty? end memo.concat strings end end