Sha256: a5383428acf63e200b46b45f49730f57389ecc075c8da98b52254d08331f3d0b
Contents?: true
Size: 477 Bytes
Versions: 16
Compression:
Stored size: 477 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" class Gem::Specification def this; self; end end require "lutaml" require "lutaml/command_line" Lutaml::CommandLine.run(ARGV.dup, STDOUT)
Version data entries
16 entries across 16 versions & 1 rubygems