Sha256: a7abfa45ac2a44660dacbe408ea71321926199e6ec8373e8c2e55de05944c26e
Contents?: true
Size: 389 Bytes
Versions: 1
Compression:
Stored size: 389 Bytes
Contents
# frozen_string_literal: true require "openapi3_parser/node_factory/map" module Openapi3Parser module NodeFactory class SecurityRequirement < NodeFactory::Map def initialize(context) super(context, value_factory: NodeFactory::Array) end private def build_node(data) Node::SecurityRequirement.new(data, context) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
openapi3_parser-0.5.2 | lib/openapi3_parser/node_factory/security_requirement.rb |