Sha256: b39e41114f8ff5b51d138c4dc5fbc865b79fab0bdd3147b6b4e6065812e22aae
Contents?: true
Size: 443 Bytes
Versions: 8
Compression:
Stored size: 443 Bytes
Contents
module Roo class Excelx class Cell class String < Cell::Base attr_reader :value, :formula, :format, :cell_value, :coordinate attr_reader_with_default default_type: :string, cell_type: :string def initialize(value, formula, style, link, coordinate) super(value, formula, nil, style, link, coordinate) end def empty? value.empty? end end end end end
Version data entries
8 entries across 8 versions & 2 rubygems