Sha256: 3714e0dc7da9989300bd00c1daee15d2a5c0a5ed159decb71b6951e522747160
Contents?: true
Size: 267 Bytes
Versions: 1
Compression:
Stored size: 267 Bytes
Contents
#!/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)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
understudy-0.0.1 | bin/understudy |