Sha256: da8c03e8184c8a0f4416403a52701b7f72668d63d8fafabd57515b20a0bd68be
Contents?: true
Size: 439 Bytes
Versions: 134
Compression:
Stored size: 439 Bytes
Contents
#!/usr/bin/env ruby # encoding: UTF-8 # resolve bin path, ignoring symlinks require "pathname" bin_file = Pathname.new(__FILE__).realpath # add self to libpath $:.unshift File.expand_path("../../lib", bin_file) # Fixes https://github.com/rubygems/rubygems/issues/1420 require "rubygems/specification" module Gem class Specification def this; self; end end end # start up the CLI require "expressir" Expressir::Cli.start(ARGV)
Version data entries
134 entries across 134 versions & 1 rubygems