bin/octopolo in octopolo-1.8.1 vs bin/octopolo in octopolo-1.9.0
- old
+ new
@@ -1,21 +1,43 @@
\ No newline at end of file
+#!/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
+
+autocomplete_commands false
+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)