Sha256: 6b3c825850fc9391d7cae89e7c83cf578f371e1bc1bb447e8963ad59fe023fb8

Contents?: true

Size: 319 Bytes

Versions: 2

Compression:

Stored size: 319 Bytes

Contents

#!/usr/bin/env ruby

here = File.expand_path(File.dirname(__FILE__))

if File.directory?("#{here}/../lib/erector")
  $:.unshift "#{here}/../lib"
end

begin
  require 'erector'
rescue LoadError
  require 'rubygems'
  require 'erector'
end

require 'erector/erect/erect'

unless Erector::Erect.new(ARGV).run
  exit 1
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
erector-0.10.0 bin/erector
erector-0.9.0 bin/erector