Sha256: c4ecd5b1770c4607927fd2855150d2ef2a9a18f866c3607f52362c4705038d7d
Contents?: true
Size: 468 Bytes
Versions: 93
Compression:
Stored size: 468 Bytes
Contents
#!/usr/bin/env ruby --disable-gems Encoding.default_external = Encoding::UTF_8 Encoding.default_internal = Encoding::UTF_8 unshift_path = ->(path) { p = File.expand_path("../../#{path}", __FILE__) $LOAD_PATH.unshift(p) unless $LOAD_PATH.include?(p) } unshift_path.call('vendor/deps/cli-ui/lib') unshift_path.call('vendor/deps/cli-kit/lib') unshift_path.call('lib') require '__app__' exit(__App__::ErrorHandler.call do __App__::EntryPoint.call(ARGV.dup) end)
Version data entries
93 entries across 93 versions & 2 rubygems