Sha256: e1e88a0605e63b50609549fda19fd136ecad5860ee795437ef19f1e40ff0aef6

Contents?: true

Size: 403 Bytes

Versions: 4

Compression:

Stored size: 403 Bytes

Contents

#! /usr/bin/env ruby

# This allows us to run easily from a git checkout without install.
def fallback_load_path(path)
  retried = false
  begin
    yield
  rescue LoadError
    unless retried
      $: << path
      retried = true
      retry
    end
    raise
  end
end

fallback_load_path(File.join(File.dirname(__FILE__), '..', 'lib')) do
  require 'perl'
  require 'perl/shell'
end

Perl::Shell.run

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruby-perl-04.01.2011.2 bin/rperl
ruby-perl-04.01.2011.1 bin/rperl
ruby-perl-04.01.2011 bin/rperl
ruby-perl-0.99.15j bin/rperl