#!/usr/bin/env ruby require 'commander/import' $:.push File.expand_path("../../lib", __FILE__) require 'helios/version' HighLine.track_eof = false # Fix for built-in Ruby Signal.trap("INT") {} # Suppress backtrace when exiting command program :version, Helios::VERSION program :description, 'A command-line interface for building mobile infrastructures' program :help, 'Author', 'Mattt Thompson ' program :help, 'Website', 'https://helios.io' program :help_formatter, :compact default_command :help require 'helios/commands'