YouPlot/lib/youplot/command/options.rb

20 lines
292 B
Ruby
Raw Normal View History

2020-12-14 14:54:54 +08:00
# frozen_string_literal: true
module YouPlot
class Command
2020-12-21 13:39:22 +08:00
Options = Struct.new(
2020-12-14 14:54:54 +08:00
:delimiter,
:transpose,
:headers,
:pass,
:output,
:fmt,
:progressive,
2020-12-14 14:54:54 +08:00
:encoding,
:color_names,
:debug,
keyword_init: true
)
end
end