Sha256: 6d6a2185a953d1af7c2bfae3e9a076ba3ca0a1067469cee9f2eb6bfd337d08e0
Contents?: true
Size: 473 Bytes
Versions: 7
Compression:
Stored size: 473 Bytes
Contents
#!/usr/bin/env ruby # This code was taken from https://github.com/lsegal/yard/blob/master/bin/yard. The code is licensed under the MIT License. # We do all this work just to find the proper load path path = __FILE__ while File.symlink?(path) path = File.expand_path(File.readlink(path), File.dirname(path)) end $:.unshift(File.join(File.dirname(File.expand_path(path)), '..', 'lib')) require 'nilac' compiler = Nilac::NilaCompiler.new(ARGV) compiler.start_compile()
Version data entries
7 entries across 7 versions & 1 rubygems