Sha256: 8b721d67b187fb7acc058be3710732eee15281bb2990ba00c8f837a01a21f6b5
Contents?: true
Size: 486 Bytes
Versions: 2
Compression:
Stored size: 486 Bytes
Contents
# frozen_string_literal: true require "openapi3_parser/node/security_requirement" require "openapi3_parser/node_factory/array" 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
openapi3_parser-0.5.1 | lib/openapi3_parser/node_factory/security_requirement.rb |
openapi3_parser-0.5.0 | lib/openapi3_parser/node_factory/security_requirement.rb |