YouPlot/lib/youplot.rb
kojix2 29dfe424e7 Flatten the module hierarchy
Move Parser and Options up
2021-05-27 21:50:05 +09:00

18 lines
339 B
Ruby

# frozen_string_literal: true
require_relative 'youplot/version'
require_relative 'youplot/dsv'
require_relative 'youplot/parameters'
require_relative 'youplot/command'
module YouPlot
class << self
attr_accessor :run_as_executable
def run_as_executable?
@run_as_executable
end
end
@run_as_executable = false
end