Sha256: 2e2aaafa2d05239a8d55262e8ae6de08ecb756e3928afca127469c0f7b3a66dc

Contents?: true

Size: 440 Bytes

Versions: 99

Compression:

Stored size: 440 Bytes

Contents

#!/usr/bin/env ruby
require 'run_loop/cli/cli'
require 'run_loop/cli/errors'
require 'run_loop/environment'

begin
  RunLoop::CLI::Tool.start
  exit 0
rescue RunLoop::CLI::ValidationError, Thor::RequiredArgumentMissingError, Thor::UndefinedCommandError => e
  puts e.message
  exit 64
rescue Thor::Error => e
  puts e.message
  if RunLoop::Environment.debug?
    puts e.backtrace.join("\n") if e.backtrace
    p e.class
  end
  exit 70
end

Version data entries

99 entries across 99 versions & 2 rubygems

Version Path
run_loop-2.5.1 bin/run-loop
run_loop-2.5.0 bin/run-loop
run_loop-2.4.1 bin/run-loop
run_loop-2.4.0 bin/run-loop
run_loop_tcc-2.1.6 bin/run-loop
run_loop_tcc-2.1.5 bin/run-loop
run_loop-2.3.1 bin/run-loop
run_loop-2.3.0 bin/run-loop
run_loop-2.2.4 bin/run-loop
run_loop-2.2.3 bin/run-loop
run_loop-2.2.2 bin/run-loop
run_loop-2.2.1 bin/run-loop
run_loop-2.2.0 bin/run-loop
run_loop-2.1.11 bin/run-loop
run_loop-2.1.10 bin/run-loop
run_loop-2.1.9 bin/run-loop
run_loop-2.1.8 bin/run-loop
run_loop-2.1.7 bin/run-loop
run_loop-2.1.6 bin/run-loop
run_loop-2.1.5 bin/run-loop