class R2OAS::Schema::PathItemFileManager
Public Class Methods
new(path, path_type = :ref)
click to toggle source
# File lib/r2-oas/schema/manager/file/path_item_file_manager.rb, line 10 def initialize(path, path_type = :ref) case ::R2OAS.version when :v3 @manager = V3::PathItemFileManager.new(path, path_type) else raise "Do not support version: #{::R2OAS.version}" end end
Also aliased as: build