YouPlot/lib/youplot.rb

16 lines
267 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'
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
def run_as_executable?
@run_as_executable
end
end
2020-11-23 12:09:16 +08:00
end