Flatten the module hierarchy

Move Parser and Options up
This commit is contained in:
kojix2
2021-05-27 21:49:53 +09:00
parent 7c42d9a444
commit 29dfe424e7
7 changed files with 325 additions and 330 deletions

17
lib/youplot/options.rb Normal file
View File

@@ -0,0 +1,17 @@
# frozen_string_literal: true
module YouPlot
Options = Struct.new(
:delimiter,
:transpose,
:headers,
:pass,
:output,
:fmt,
:progressive,
:encoding,
:color_names,
:debug,
keyword_init: true
)
end