module Drawy

Constants

VERSION

Public Class Methods

run() click to toggle source
# File lib/drawy.rb, line 14
def run
  Drawy::Application.start
rescue Drawy::Error => e
  $stderr.puts "#------------ #{e.message} ------------#"
  run
rescue StandardError => e
  abort "#{e.backtrace.join("\n")}\n\n#{e.class} - #{e.message}\n\nSomething went wrong."
end