Sha256: dc439914ec96c39429a630cbda3f813fce3366e13d357656365b15a4cbdcb0e4
Contents?: true
Size: 939 Bytes
Versions: 1
Compression:
Stored size: 939 Bytes
Contents
module AxlsxStyler module Styles # An index for cell styles where keys are styles codes as per Axlsx::Style and values are Cell#raw_style # The reason for the backward key/value ordering is that style lookup must be most efficient, while `add_style` can be less efficient def style_index @style_index ||= {} end # Ensure plain axlsx styles are added to the axlsx_styler style_index cache def add_style(options={}) if options[:type] == :dxf style_id = super else raw_style = {type: :xf, name: 'Arial', sz: 11, family: 1}.merge(options) if raw_style[:format_code] raw_style.delete(:num_fmt) end style_id = style_index.key(raw_style) if !style_id style_id = super style_index[style_id] = raw_style end end return style_id end end end Axlsx::Styles.send(:prepend, AxlsxStyler::Styles)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
axlsx_styler-1.1.0 | lib/axlsx_styler/axlsx_styles.rb |