Sha256: 991c72811262ae2b1d1965bea0ed36c3ee4859de472582d12be2c039f7b4d81b
Contents?: true
Size: 404 Bytes
Versions: 12
Compression:
Stored size: 404 Bytes
Contents
# frozen_string_literal: true module Nonnative class ConfigurationServer attr_accessor :name, :klass, :timeout, :port, :log attr_reader :proxy def initialize @proxy = Nonnative::ConfigurationProxy.new end def proxy=(value) proxy.type = value[:type] proxy.port = value[:port] proxy.log = value[:log] proxy.options = value[:options] end end end
Version data entries
12 entries across 12 versions & 1 rubygems