Sha256: d08814e6eb0b28a1a916a213877d2fe759d4b5ecf50dcfaa9f74606556d23649

Contents?: true

Size: 451 Bytes

Versions: 2

Compression:

Stored size: 451 Bytes

Contents

#!/usr/bin/env ruby
# vim: ft=ruby

require_relative '../lib/ruby_warnings'

lib_path = File.expand_path("#{File.dirname(__FILE__)}/../lib")
$LOAD_PATH << lib_path if File.exist?(lib_path) && !$LOAD_PATH.include?(lib_path)

require 'sym'
require 'sym/app'

# ARGV.any?{ |a| a =~ /^-/ } ?
begin
  exit ::Sym::App::CLI.new(ARGV.dup).execute
rescue Interrupt => e
  $stderr.flush
  warn "Interrupt, #{e.message}, exiting."
  $stderr.flush
  exit 1
end


Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sym-3.0.2 exe/sym
sym-3.0.1 exe/sym