module WebSocket::Client::Simple

Constants

VERSION

Public Class Methods

connect(url, options={}) { |client| ... } click to toggle source
# File lib/websocket-client-simple/client.rb, line 5
def self.connect(url, options={})
  client = ::WebSocket::Client::Simple::Client.new
  yield client if block_given?
  client.connect url, options
  return client
end