Sha256: 26a7b1c240b7f7274867979b451607b31e683b3e0d5b7094dabfe52c3c78ddf0

Contents?: true

Size: 650 Bytes

Versions: 4

Compression:

Stored size: 650 Bytes

Contents

#!/usr/bin/env ruby

require 'qcmd'
require 'trollop'

VERSION_STRING =  "qcmd #{ Qcmd::VERSION } (c) 2012 Figure 53, Baltimore, MD."

opts = Trollop::options do
  version VERSION_STRING
  opt :verbose, 'Use verbose mode', :default => false
  opt :debug, "Show full debug output, don't make changes to workspaces", :default => false
end

if opts[:verbose]
  Qcmd.log_level = :debug
end

if opts[:debug]
  Qcmd.log_level = :debug
  Qcmd.debug_mode = true
end

# browse local network and check for qlab + qlab workspaces

Qcmd.ascii_qlab
Qcmd.print
Qcmd.print Qcmd.centered_text(VERSION_STRING)

Qcmd::Network.browse_and_display

Qcmd::CLI.launch opts

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
qcmd-0.1.3 bin/qcmd
qcmd-0.1.2 bin/qcmd
qcmd-0.1.1 bin/qcmd
qcmd-0.1.0 bin/qcmd