piotrmurach/tty

View on GitHub
exe/teletype

Summary

Maintainability
Test Coverage
#!/usr/bin/env ruby
# frozen_string_literal: true

lib_path = File.expand_path('../lib', __dir__)
$:.unshift(lib_path) if !$:.include?(lib_path)
require 'tty/cli'

Signal.trap('INT') do
  warn("\n#{caller.join("\n")}: interrupted")
  exit(1)
end

begin
  TTY::CLI.start
rescue TTY::CLI::Error => err
  puts "ERROR: #{err.message}"
  exit 1 #err.status
end