YouPlot/lib/youplot.rb

18 lines
339 B
Ruby
Raw Normal View History

2020-11-23 12:09:16 +08:00
# frozen_string_literal: true
require_relative 'youplot/version'
require_relative 'youplot/dsv'
require_relative 'youplot/parameters'
require_relative 'youplot/command'
2020-11-23 12:09:16 +08:00
module YouPlot
2021-01-19 23:07:23 +08:00
class << self
attr_accessor :run_as_executable
2021-01-19 23:57:56 +08:00
2021-01-19 23:07:23 +08:00
def run_as_executable?
@run_as_executable
end
end
2021-01-19 23:57:56 +08:00
@run_as_executable = false
2020-11-23 12:09:16 +08:00
end