Sha256: e8b6735b756b90331cb87042b08e619881999431c3b395735ad44389ac5354b3

Contents?: true

Size: 449 Bytes

Versions: 2

Compression:

Stored size: 449 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.0 exe/sym
sym-2.10.0 exe/sym