#!/usr/bin/env ruby require 'rubygems' require 'gli' require_relative '../lib/octopolo' include GLI::App program_desc 'GitHub workflow scripts. From the Ngineers at Sport Ngin.' version Octopolo::VERSION wrap_help_text :verbatim program_long_desc """ DOCUMENTATION For documentation and help in setting up your configuration files, see Octopolo's GitHub repo: https://github.com/sportngin/octopolo """ commands_from File.expand_path(File.dirname(__FILE__) + '/../lib/octopolo/commands') exit run(ARGV)