YouPlot/lib/youplot/options.rb

19 lines
299 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module YouPlot
2021-05-29 09:28:56 +08:00
# Command line options that are not Plot parameters
Options = Struct.new(
:delimiter,
:transpose,
:headers,
:pass,
:output,
:fmt,
:progressive,
:encoding,
:color_names,
2021-06-03 09:48:47 +08:00
:debug
# keyword_init: true
)
end