class Portable::Modeling::Options
Defines all the options for an export including static header rows, footer rows, and how to draw the data table.
Attributes
byte_order_mark[R]
Public Class Methods
new(byte_order_mark: nil)
click to toggle source
# File lib/portable/modeling/options.rb, line 21 def initialize(byte_order_mark: nil) @byte_order_mark = ByteOrderMark.resolve(byte_order_mark) freeze end
Public Instance Methods
byte_order_mark?()
click to toggle source
# File lib/portable/modeling/options.rb, line 27 def byte_order_mark? !byte_order_mark.nil? end