Sha256: 6d42d640cee9dc06680db8baf4cddc2c5b1b25b8275bc7ee5437801afce782fb
Contents?: true
Size: 494 Bytes
Versions: 28
Compression:
Stored size: 494 Bytes
Contents
#!/usr/bin/env ruby # encoding: UTF-8 # frozen_string_literal: true # 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 require "lutaml" require "lutaml/command_line" Lutaml::CommandLine.run(ARGV.dup, $stdout)
Version data entries
28 entries across 28 versions & 1 rubygems