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-4.9.1 bin/run-loop
run_loop-4.9.0 bin/run-loop
run_loop-4.8.1 bin/run-loop
run_loop-4.8.0 bin/run-loop
run_loop-4.7.0 bin/run-loop
run_loop-4.6.3 bin/run-loop
run_loop-4.6.1 bin/run-loop
run_loop-4.6.0 bin/run-loop
run_loop-4.5.7 bin/run-loop
run_loop-4.5.6 bin/run-loop
run_loop-4.5.5 bin/run-loop
run_loop-4.5.4 bin/run-loop
run_loop-4.5.3 bin/run-loop
run_loop-4.5.2 bin/run-loop
run_loop-4.5.1 bin/run-loop
run_loop-4.5.0 bin/run-loop
run_loop-4.4.2 bin/run-loop
run_loop-4.4.1 bin/run-loop
run_loop-2.3.2 bin/run-loop
run_loop-4.3.0 bin/run-loop