Sha256: 6f942425a7b42569a689055fd150eb0a473bb35e7b6b509b2f3a3025bcdd9720

Contents?: true

Size: 323 Bytes

Versions: 11

Compression:

Stored size: 323 Bytes

Contents

#!/usr/bin/env ruby

require 'pathname'

$LOAD_PATH << Pathname(__dir__) + "../lib"

require 'steep'
require 'steep/cli'

begin
  Steep::CLI.new(argv: ARGV.dup, stdout: STDOUT, stderr: STDERR, stdin: STDIN).run
rescue => exn
  STDERR.puts exn.inspect
  exn.backtrace.each do |t|
    STDERR.puts "  #{t}"
  end
  exit 2
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
steep-0.7.1 exe/steep
steep-0.7.0 exe/steep
steep-0.6.0 exe/steep
steep-0.5.1 exe/steep
steep-0.5.0 exe/steep
steep-0.4.0 exe/steep
steep-0.3.0 exe/steep
steep-0.2.0 exe/steep
steep-0.1.0 exe/steep
steep-0.1.0.pre2 exe/steep
steep-0.1.0.pre exe/steep