Sha256: 21a83ae2923d3ddbfddef6207ccd2258b3e0d680f927174354efdd65c1cc8994
Contents?: true
Size: 345 Bytes
Versions: 3
Compression:
Stored size: 345 Bytes
Contents
#!/usr/bin/env ruby app_lib = File.expand_path('../lib', File.dirname(__FILE__)) $LOAD_PATH.unshift(app_lib) unless $LOAD_PATH.include?(app_lib) require 'lucid/app' begin Lucid::App.new.run rescue SystemExit # noop rescue Exception => e STDERR.puts("#{e.message} (#{e.class})") STDERR.puts(e.backtrace.join("\n")) Kernel.exit(1) end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
lucid-0.0.4 | bin/lucid |
lucid-0.0.3 | bin/lucid |
lucid-0.0.2 | bin/lucid |