Sha256: bda70acc721ea9bbcd223f69c18e4b46df571bef4b93171ed4b9e183654395b4

Contents?: true

Size: 293 Bytes

Versions: 1

Compression:

Stored size: 293 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

    def setup()

    end
  end
end

Understudy::CLI.start(ARGV)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
understudy-0.0.2 bin/understudy