Sha256: 7b5f782096292550f46255612da30c5477de47eee993dc5629db9d9d87824930
Contents?: true
Size: 325 Bytes
Versions: 11
Compression:
Stored size: 325 Bytes
Contents
module Skylight class Connection def self.open(host, port, ssl) conn = new(host, port, ssl) conn.open conn end def initialize(host, port, ssl) @host = host @port = port @ssl = ssl end def open # stuff end def close # stuff end end end
Version data entries
11 entries across 11 versions & 1 rubygems