Sha256: 7e7e3605b75b649a2a561c0b03245f8fe417c4ec0fcc28bee68c82e19499a6a6
Contents?: true
Size: 386 Bytes
Versions: 72
Compression:
Stored size: 386 Bytes
Contents
module SmartyStreets # Contains information about the proxy through which all requests will be sent. # # host should not include a scheme class Proxy attr_accessor :port, :host, :username, :password def initialize(host, port, username = nil, password = nil) @host = host @port = port @username = username @password = password end end end
Version data entries
72 entries across 72 versions & 1 rubygems