module VisualizeRuby

Constants

VERSION

Public Class Methods

new() { |runner| ... } click to toggle source
# File lib/visualize_ruby.rb, line 18
def self.new
  runner = Runner.new
  if block_given?
    yield(runner)
    runner.run!
  else
    runner
  end
end