Sha256: 03e7da0311872702576beaeb05cf7d7d3731a1c82bd797a31fb33053092968d9
Contents?: true
Size: 264 Bytes
Versions: 26
Compression:
Stored size: 264 Bytes
Contents
# frozen_string_literal: true module Nonnative class ConfigurationProxy attr_accessor :kind, :host, :port, :log, :options def initialize self.kind = 'none' self.host = '0.0.0.0' self.port = 0 self.options = {} end end end
Version data entries
26 entries across 26 versions & 1 rubygems