Sha256: 88009acf3254136ef49217e69735a98c7920618bef9ca39b5ebcc931ec03c232
Contents?: true
Size: 427 Bytes
Versions: 76
Compression:
Stored size: 427 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 "metanorma/cli" Metanorma::Cli.start(ARGV)
Version data entries
76 entries across 76 versions & 1 rubygems