# frozen_string_literal: true module R2OAS module Tool module Paths class Ls < Base def print Dir.glob("#{schema_save_dir_path}/paths/**/**.yml").each do |path| puts path.sub(%r{^#{Dir.getwd}/?}, '') end end end end end end