YouPlot/lib/youplot/options.rb

19 lines
310 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
2021-06-03 09:48:47 +08:00
:debug
)
end