class YARD::CLI::YardoptsCommand

def yardopts(file = options_file)

Returns:
  • (Array) - an array of options parsed from .yardopts
def yardopts(file = options_file)
  return [] unless use_yardopts_file
  File.read_binary(file).shell_split
rescue Errno::ENOENT
  []
end