YouPlot/lib/youplot/options.rb

20 lines
334 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,
2021-05-31 21:50:11 +08:00
:reverse, # count
:color_names, # color
:debug,
keyword_init: true
)
end