mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-05-06 07:10:10 +08:00
16 lines
267 B
Ruby
16 lines
267 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'unicode_plot'
|
|
require 'youplot/version'
|
|
require 'youplot/dsv'
|
|
require 'youplot/command'
|
|
|
|
module YouPlot
|
|
class << self
|
|
attr_accessor :run_as_executable
|
|
def run_as_executable?
|
|
@run_as_executable
|
|
end
|
|
end
|
|
end
|