Sha256: e640eb200e72068efaf25ca11baee7bb791eec956a0866eb70f53c70f00c82a4

Contents?: true

Size: 367 Bytes

Versions: 2

Compression:

Stored size: 367 Bytes

Contents

#!/usr/bin/env ruby
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')

require 'igp'
require 'getoptions'

begin
  options = GetOptions.new(Igp::Shell::OPTIONS)
  Igp::Shell.new(options, ARGV).run
rescue Interrupt, NoMethodError
  $stderr.puts ''
rescue Exception => e
  $stderr.puts "That wasn't meant to happen! #{e.message}"
  Igp::Shell.usage
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
igp-1.1.0 bin/igp
igp-1.0.0 bin/igp