lib/oas_rails/builders/path_item_builder.rb
module OasRails module Builders class PathItemBuilder def initialize(specification) @specification = specification @path_item = Spec::PathItem.new(specification) end def from_path(path, route_extractor: Extractors::RouteExtractor) route_extractor.host_routes_by_path(path).each do |oas_route| oas_route.verb.downcase.split("|").each do |v| @path_item.add_operation(v, OperationBuilder.new(@specification).from_oas_route(oas_route).build) end end self end def build @path_item end end end end