Sha256: b89b90f29b70916181a19393f823bdc7a192e24d69a9c1b1ad7ff54e760dafcb

Contents?: true

Size: 360 Bytes

Versions: 2

Compression:

Stored size: 360 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

# 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
$LOAD_PATH.unshift(File.join(File.dirname(File.expand_path(path)), '..', 'lib'))

require 'yard'

YARD::CLI::Yardoc.run(*ARGV)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
yard-0.9.18 bin/yardoc
yard-0.9.17 bin/yardoc