#!/usr/bin/env ruby # Trap interrupts to quit cleanly. See # https://twitter.com/mitchellh/status/283014103189053442 Signal.trap("INT") { exit 1 } require 'thor' module Understudy class CLI < Thor include Thor::Actions end end Understudy::CLI.start(ARGV)