Sha256: 4f8b9e94a7a709d25828c9442573d78036022d6d68c703178061455d77c45e9c

Contents?: true

Size: 315 Bytes

Versions: 3

Compression:

Stored size: 315 Bytes

Contents

#!/usr/bin/env ruby
module AlfLauncher

  def self.load
    require "alf-shell"
  end
  
  def self.start(argv)
    load
    if ENV["ALF_OPTS"]
      argv = Quickl.parse_commandline_args(ENV["ALF_OPTS"]) + argv
    end
    Alf::Shell::Main.run(argv, __FILE__)
  end

end # module AlfLaucher
AlfLauncher.start(ARGV)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
alf-shell-0.14.0 bin/alf
alf-shell-0.13.1 bin/alf
alf-shell-0.13.0 bin/alf