Sha256: b96a0233663b09785721aeb395fd48f9469183388f1f7056703fe9c5a5e4a5ed

Contents?: true

Size: 434 Bytes

Versions: 4

Compression:

Stored size: 434 Bytes

Contents

#!/usr/bin/env ruby
require "pathname"
require "bundler"
Bundler.require

bin_file = Pathname.new(__FILE__).realpath
# add self to libpath
$:.unshift File.expand_path("../../lib", bin_file)

require 'gush'

begin
  Gush::CLI.start(ARGV)
rescue Gush::WorkflowNotFound
  puts Paint["Workflow not found", :red]
rescue Gush::DependencyLevelTooDeep
  puts Paint["Dependency level too deep. Perhaps you have a dependency cycle?", :red]
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gush-4.1.0 bin/gush
gush-4.0.0 bin/gush
gush-3.0.0 bin/gush
gush-2.1.0 bin/gush