Sha256: 0aceb001acb78b1a1f234a83d9e22ea2edaa5363499142c4809dbaf83387439e
Contents?: true
Size: 629 Bytes
Versions: 18
Compression:
Stored size: 629 Bytes
Contents
# Copyright (c) 2023 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Config # Api Proxy keys configuration class ApiProxyConfiguration include Contrast::Config::BaseConfiguration # @return [String] proxy url attr_accessor :url attr_writer :enable def initialize hsh = {} return unless hsh @enable = hsh[:enable] @url = hsh[:url] end # @return [Boolean, false] def enable @enable.nil? ? false : @enable end end end end
Version data entries
18 entries across 18 versions & 1 rubygems