class Spreadsheet::Workbook

Public Instance Methods

to_string() click to toggle source
# File lib/tabledata/patches/spreadsheet.rb, line 11
def to_string
  StringIO.new.tap { |string_io| write(string_io) }.string
end