YouPlot/lib/youplot.rb

19 lines
326 B
Ruby
Raw Normal View History

2020-11-23 12:09:16 +08:00
# frozen_string_literal: true
require 'unicode_plot'
require 'youplot/version'
2020-12-21 13:25:52 +08:00
require 'youplot/dsv'
2021-05-27 20:15:06 +08:00
require 'youplot/parameters'
2020-11-23 12:09:16 +08:00
require 'youplot/command'
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