Sha256: 1096908b4e5518052b0b330eaef22f2b7279efb88070c8be3ef55fe1367f59fe
Contents?: true
Size: 374 Bytes
Versions: 1
Compression:
Stored size: 374 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.options = value[:options] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nonnative-1.25.0 | lib/nonnative/configuration_server.rb |