YouPlot/lib/youplot/options.rb
2021-06-03 11:01:20 +09:00

19 lines
310 B
Ruby

# frozen_string_literal: true
module YouPlot
# Command line options that are not Plot parameters
Options = Struct.new(
:delimiter,
:transpose,
:headers,
:pass,
:output,
:fmt,
:progressive,
:encoding,
:reverse, # count
:color_names, # color
:debug
)
end