Sha256: 918e4858f4ae06ab099791eb1c5d37f99ed66d4be9bfd30151545f8dc4e2463e

Contents?: true

Size: 838 Bytes

Versions: 2

Compression:

Stored size: 838 Bytes

Contents

#!/usr/bin/env ruby
$:.unshift File.expand_path '../lib', File.dirname(__FILE__)
require 'rubygems'
require 'em-rocketio-client'

name = `whoami`.strip || 'shokai'
url = ARGV.shift || 'http://localhost:5000'
type = ARGV.shift || :websocket

EM::run do
  io = EM::RocketIO::Client.new(url, :type => type).connect
  # io = EM::RocketIO::Client.new('http://localhost:5000', :type => :comet).connect

  io.on :connect do |session|
    puts "#{io.type} connect!! (sessin_id:#{session})"
  end

  io.on :disconnect do
    puts "#{io.type} disconnect"
  end

  io.on :chat do |data|
    puts "<#{data['name']}> #{data['message']}"
  end

  io.on :error do |err|
    STDERR.puts err
  end

  EM::defer do
    loop do
      line = STDIN.gets.strip
      next if line.empty?
      io.push :chat, {:message => line, :name => name}
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
em-rocketio-client-0.0.3 sample/cui_chat_client.rb
em-rocketio-client-0.0.2 sample/cui_chat_client.rb