Sha256: 398551a39386990c24fda727e2580b4f540270e1f9ca07411d9a62f67f9adda2
Contents?: true
Size: 417 Bytes
Versions: 30
Compression:
Stored size: 417 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" class Gem::Specification def this; self; end end # start up the CLI require "reeper" Reeper::Cli.start(ARGV)
Version data entries
30 entries across 30 versions & 3 rubygems