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

Version Path
roo-2.10.1 lib/roo/excelx/cell/string.rb
roo-2.10.0 lib/roo/excelx/cell/string.rb
roo-2.9.0 lib/roo/excelx/cell/string.rb
ruh-roo-3.0.1 lib/roo/excelx/cell/string.rb
roo-2.8.3 lib/roo/excelx/cell/string.rb
roo-2.8.2 lib/roo/excelx/cell/string.rb
roo-2.8.1 lib/roo/excelx/cell/string.rb
roo-2.8.0 lib/roo/excelx/cell/string.rb