module Transcriptic::Command # view the status of your runs # class Status < Base # transcriptic status [RUNID] # # list active runs, or if RUNID supplied, show details of that run # def index run_id = args.shift if run_id.nil? error("Usage: transcriptic status RUNID\nMust specify RUNID to get run status.") end puts run_id end end end