Method: Bundler::SocketAddress#initialize

Defined in:
lib/bundler/mirror.rb

#initialize(type, host, port) ⇒ SocketAddress

Returns a new instance of SocketAddress.

[View source]

211
212
213
214
215
# File 'lib/bundler/mirror.rb', line 211

def initialize(type, host, port)
  @type = type
  @host = host
  @port = port
end