Sha256: ae42f358f2e06f3a10643cd22736227cb6eadf42906391569551752387c08ac3

Contents?: true

Size: 568 Bytes

Versions: 33

Compression:

Stored size: 568 Bytes

Contents

#!/usr/bin/env ruby

( [1, 9, 2] <=> ( RUBY_VERSION.split(".").collect {|x| x.to_i} ) ) <= 0 or
  abort "Ruby v1.9.2 is required; this is v#{RUBY_VERSION}."

if ENV['FIG_COVERAGE']
  require File.expand_path(
    File.join(
      File.dirname(__FILE__), %w< .. lib fig command coverage_support.rb >
    )
  )
end

$LOAD_PATH << File.expand_path(File.join(File.dirname(__FILE__), %w< .. lib > ))

require 'rubygems'

require 'fig/command'

# Identical to regular fig, but doesn't use exception handling so you can see
# stack traces.
exit Fig::Command.new.run_fig ARGV

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
fig-1.10.0 bin/fig-debug
fig-1.9.0 bin/fig-debug
fig-1.8.0 bin/fig-debug
fig-1.7.0 bin/fig-debug
fig-1.6.0 bin/fig-debug
fig-1.5.0 bin/fig-debug
fig-1.4.0 bin/fig-debug
fig-1.3.0 bin/fig-debug
fig-1.2.0 bin/fig-debug
fig-1.1.0 bin/fig-debug
fig-1.0.0 bin/fig-debug
fig-0.2.5 bin/fig-debug
fig-0.2.3 bin/fig-debug