Files
YouPlot/lib/youplot/command/options.rb

20 lines
292 B
Ruby
Raw Normal View History

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