Sha256: 2849475170a78ef90b82bbc236d9454d9c9bd03e278ae4a5a61ff647b6b3405b
Contents?: true
Size: 815 Bytes
Versions: 8
Compression:
Stored size: 815 Bytes
Contents
# frozen_string_literal: true module Roo class Excelx class Cell class Boolean < Cell::Base attr_reader :value, :formula, :format, :cell_value, :coordinate attr_reader_with_default default_type: :boolean, cell_type: :boolean def initialize(value, formula, style, link, coordinate) super(value, formula, nil, style, nil, coordinate) @value = link ? Roo::Link.new(link, value) : create_boolean(value) end def formatted_value value ? 'TRUE' : 'FALSE' end private def create_boolean(value) # FIXME: Using a boolean will cause methods like Base#to_csv to fail. # Roo is using some method to ignore false/nil values. value.to_i == 1 end end end end end
Version data entries
8 entries across 8 versions & 2 rubygems