Rubyfox::Client¶ ↑
Ruby binding for SmartFox’s client. docs2x.smartfoxserver.com/api-docs/javadoc/client/
Gem | Source | Documentation
Installation¶ ↑
Add this line to your application’s Gemfile:
gem 'rubyfox-client'
And then execute:
$ bundle
Or install it yourself as:
$ gem install rubyfox-client
Usage¶ ↑
require 'rubyfox/client' ARGV.size == 3 or abort "usage: simple.rb username password zone" Rubyfox::Client.boot! # optional options = { host: '127.0.0.1', debug: true } client = Rubyfox::Client.new(options) client.on_event :connection do |event| p :connected! client.send :login, *ARGV end client.on_event :login do |event| p :login => event.params[:zone] client.disconnect end client.on_event :login_error do |event| p :login_failed client.disconnect end client.on_event :connection_lost do |event| p :disconnected client.exit end client.connect
See github.com/neopoly/rubyfox-client/tree/master/examples for more examples.
TODO¶ ↑
-
Tests!
Contributing¶ ↑
-
Fork it
-
Create your feature branch (‘git checkout -b my-new-feature`)
-
Commit your changes (‘git commit -am ’Add some feature’‘)
-
Push to the branch (‘git push origin my-new-feature`)
-
Create new Pull Request