#!/usr/bin/env ruby # Add the code for binary if we need one require_relative "../lib/agile_utils" include AgileUtils if ARGV.empty? AgileUtils::CLI.start(%w[usage]) else AgileUtils::CLI.start(%w[main].concat(ARGV)) end