Sha256: 83cea83b299863959fd06db0280774f391fc1a80af0ce62853422673fdf98ccb

Contents?: true

Size: 268 Bytes

Versions: 2

Compression:

Stored size: 268 Bytes

Contents

# 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
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
r2-oas-0.1.2 lib/r2-oas/tool/paths/ls.rb
r2-oas-0.1.0 lib/r2-oas/tool/paths/ls.rb