Files
YouPlot/lib/youplot.rb

18 lines
297 B
Ruby
Raw Permalink Normal View History

2020-11-23 13:09:16 +09:00
# frozen_string_literal: true
require 'unicode_plot'
require 'youplot/version'
2020-12-21 14:25:52 +09:00
require 'youplot/dsv'
2020-11-23 13:09:16 +09:00
require 'youplot/command'
module YouPlot
2021-01-20 00:07:23 +09:00
class << self
attr_accessor :run_as_executable
2021-01-20 00:57:56 +09:00
2021-01-20 00:07:23 +09:00
def run_as_executable?
@run_as_executable
end
end
2021-01-20 00:57:56 +09:00
@run_as_executable = false
2020-11-23 13:09:16 +09:00
end